Skip to content

Commit

Permalink
Remove pip upgrade step from workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Boenninghausen committed Sep 11, 2024
1 parent a161fd9 commit 0fc45d0
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/socbed-systemtest-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,13 @@ jobs:
ref: dev

- name: Create virtual environment
run: python3 -m venv /usr/share/runner-dependencies/socbed_env
run: python -m venv /usr/share/runner-dependencies/socbed_env

- name: Activate virtual environment
run: source /usr/share/runner-dependencies/socbed_env/bin/activate

- name: Upgrade pip3 inside virtual environment
run: pip3 install --upgrade pip

- name: Install requirements in virtual environment (without using cached packages)
run: pip3 install -r requirements.txt --no-cache-dir
run: pip install -r requirements.txt --no-cache-dir

build-machines:
runs-on: [self-hosted, linux]
Expand Down

0 comments on commit 0fc45d0

Please sign in to comment.