Skip to content

Commit

Permalink
always do apt-get update on ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
pabuhler authored Dec 12, 2023
1 parent a90152c commit 68ac955
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/autotools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
steps:
- name: Setup Ubuntu
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install valgrind
run: |
sudo apt-get update
sudo apt-get install valgrind
- name: Setup Ubuntu NSS
if: matrix.os == 'ubuntu-latest' && matrix.crypto == 'nss'
run: |
sudo apt-get update
sudo apt-get install libnss3-dev
run: sudo apt-get install libnss3-dev

- name: Setup macOS OpenSSL
if: matrix.os == 'macos-latest' && matrix.crypto == 'openssl'
Expand Down

0 comments on commit 68ac955

Please sign in to comment.