Skip to content

Commit

Permalink
Move package install earlier
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverholworthy committed Jun 2, 2023
1 parent 018b34a commit 31f8fb4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/gpu-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Ubuntu packages
run: |
apt-get update -y
apt-get install -y build-essential protobuf-compiler git lsb-release
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
cache: 'pip'
cache-dependency-path: requirements/*.txt
- name: Install Ubuntu packages
run: |
apt-get update -y
apt-get install -y build-essential protobuf-compiler git
- name: Install and upgrade python packages
run: |
python -m pip install --upgrade pip setuptools==59.4.0 wheel tox pybind11
Expand Down

0 comments on commit 31f8fb4

Please sign in to comment.