Skip to content

Commit 3a95fde

Browse files
committed
Add apt-get update command for the CI
If the apt-get cache is outdated, it may end up trying to fetch a package that no longer exists, so the cache needs to be updated.
1 parent c10c458 commit 3a95fde

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: Install Linux Dependencies
3636
if: runner.os == 'Linux'
37-
run: sudo apt-get install libxrandr-dev libxcursor-dev libudev-dev libopenal-dev libflac-dev libvorbis-dev libgl1-mesa-dev libegl1-mesa-dev
37+
run: sudo apt-get update && sudo apt-get install libxrandr-dev libxcursor-dev libudev-dev libopenal-dev libflac-dev libvorbis-dev libgl1-mesa-dev libegl1-mesa-dev
3838

3939

4040
- name: Install Android Components

0 commit comments

Comments
 (0)