mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
Install poetry deps after checking out
This commit is contained in:
parent
bd0b032c30
commit
b8b11b514d
1 changed files with 5 additions and 5 deletions
|
@ -102,11 +102,6 @@ jobs:
|
||||||
machine:
|
machine:
|
||||||
image: ubuntu-2004:202111-01
|
image: ubuntu-2004:202111-01
|
||||||
steps:
|
steps:
|
||||||
- run:
|
|
||||||
name: Install dependencies
|
|
||||||
command: |
|
|
||||||
sudo pip3 install poetry
|
|
||||||
poetry install
|
|
||||||
# https://www.atlantic.net/dedicated-server-hosting/how-to-install-and-use-podman-on-ubuntu-20-04/
|
# https://www.atlantic.net/dedicated-server-hosting/how-to-install-and-use-podman-on-ubuntu-20-04/
|
||||||
- run:
|
- run:
|
||||||
name: Install podman on Ubuntu 20.04
|
name: Install podman on Ubuntu 20.04
|
||||||
|
@ -119,6 +114,11 @@ jobs:
|
||||||
sudo apt-get -qq --yes install podman
|
sudo apt-get -qq --yes install podman
|
||||||
podman --version
|
podman --version
|
||||||
- checkout
|
- checkout
|
||||||
|
- run:
|
||||||
|
name: Install poetry dependencies
|
||||||
|
command: |
|
||||||
|
sudo pip3 install poetry
|
||||||
|
poetry install
|
||||||
- run:
|
- run:
|
||||||
name: Prepare cache directory
|
name: Prepare cache directory
|
||||||
command: |
|
command: |
|
||||||
|
|
Loading…
Reference in a new issue