Skip to content

Commit

Permalink
Merge pull request #664 from cisco/pabuhler-use-ubuntu-latest
Browse files Browse the repository at this point in the history
try to use ubuntu-latest
  • Loading branch information
pabuhler authored Dec 12, 2023
2 parents 944b0e7 + 919bf5f commit 94ba4be
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/autotools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-latest]
os: [ubuntu-latest, macos-latest]
crypto: [internal, openssl, nss]
include:
- crypto: internal
Expand All @@ -25,14 +25,14 @@ jobs:

steps:
- name: Setup Ubuntu
if: matrix.os == 'ubuntu-20.04'
run: sudo apt-get install valgrind

- name: Setup Ubuntu NSS
if: matrix.os == 'ubuntu-20.04' && matrix.crypto == 'nss'
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install libnss3-dev
sudo apt-get install valgrind
- name: Setup Ubuntu NSS
if: matrix.os == 'ubuntu-latest' && matrix.crypto == 'nss'
run: sudo apt-get install libnss3-dev

- name: Setup macOS OpenSSL
if: matrix.os == 'macos-latest' && matrix.crypto == 'openssl'
Expand All @@ -54,5 +54,5 @@ jobs:
run: make runtest

- name: Test Valgrind
if: matrix.os == 'ubuntu-20.04'
if: matrix.os == 'ubuntu-latest' && matrix.crypto != 'nss'
run: make runtest-valgrind

0 comments on commit 94ba4be

Please sign in to comment.