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

ci: replace Ubuntu 18.04 on GHA with Ubuntu 20.04 #716

Merged
merged 1 commit into from
Aug 10, 2022
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
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,16 @@ jobs:
- toolset: gcc
compiler: g++-8
cxxstd: "14"
os: ubuntu-18.04
os: ubuntu-20.04
install: g++-8
- toolset: gcc-9
cxxstd: "14,17"
os: ubuntu-18.04
os: ubuntu-20.04
install: g++-9
- toolset: gcc-10
cxxstd: "14,17"
os: ubuntu-18.04
os: ubuntu-20.04
install: g++-10
- toolset: clang
compiler: clang++-3.9
cxxstd: "14"
Expand All @@ -54,12 +56,12 @@ jobs:
- toolset: clang
compiler: clang++-6.0
cxxstd: "14,17"
os: ubuntu-18.04
os: ubuntu-20.04
install: clang-6.0
- toolset: clang
compiler: clang++-7
cxxstd: "14,17"
os: ubuntu-18.04
os: ubuntu-20.04
install: clang-7
- toolset: clang
compiler: clang++-8
Expand Down