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

Commit

Permalink
Update Nightly.yml (#274)
Browse files Browse the repository at this point in the history
Add `sudo apt-get update` line to the "Install GR dependencies (Linux only)" step. This updates download links to required packages. See #252 #270
  • Loading branch information
alfredclwong authored Aug 31, 2021
1 parent 0c3adb9 commit 9787980
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/Nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,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 9787980

Please sign in to comment.