Skip to content
This repository has been archived by the owner on Oct 23, 2022. It is now read-only.

Commit

Permalink
add apt-get update line to GR dependencies step
Browse files Browse the repository at this point in the history
fixes #270
  • Loading branch information
alfredclwong committed Aug 20, 2021
1 parent f3bfebb commit 3352058
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ jobs:
mklink libglapi.dll "x64\libglapi.dll"
- name: Install GR dependencies (Linux only)
if: runner.os == 'Linux'
run: sudo apt install libxt6 libxrender1 libxext6 libgl1-mesa-glx libqt5widgets5
run: |
sudo apt-get update
sudo apt install libxt6 libxrender1 libxext6 libgl1-mesa-glx libqt5widgets5
- uses: actions/cache@v2
env:
cache-name: cache-artifacts
Expand Down

0 comments on commit 3352058

Please sign in to comment.