Skip to content

Commit

Permalink
Merge pull request #2333 from nickclark2016/fixes/linux-ci-update-deps
Browse files Browse the repository at this point in the history
Update package repos before installing deps on Linux
  • Loading branch information
samsinsane authored Nov 21, 2024
2 parents 5c1c591 + 3a7a2d5 commit f1e2014
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:
uses: actions/checkout@v4
- name: Install dependencies
if: matrix.depsrc == 'system'
run: sudo apt-get install libcurl4-openssl-dev
run: |
sudo apt-get update
sudo apt-get -y install libcurl4-openssl-dev
- name: Build
run: PLATFORM=${{ matrix.platform }} CONFIG=${{ matrix.config }} PREMAKE_OPTS="--curl-src=${{ matrix.depsrc }}" ./Bootstrap.sh
- name: Test
Expand Down

0 comments on commit f1e2014

Please sign in to comment.