Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

try to use ubuntu-latest #664

Merged
merged 4 commits into from
Dec 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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