Skip to content

Commit 90fc475

Browse files
committed
Upgrade to Ubuntu 22
1 parent 4c8671c commit 90fc475

File tree

4 files changed

+9
-13
lines changed

4 files changed

+9
-13
lines changed

.github/workflows/linux-other-builds.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ on: [push, pull_request]
88
jobs:
99
build:
1010
name: ${{matrix.build_description}}, ${{matrix.cxx}}, C++${{matrix.std}} ${{matrix.build_type}}
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-22.04
1212
strategy:
13+
fail-fast: false
1314
matrix:
1415
# We add builds one by one in this case, because there are no
1516
# dimensions that are shared across the builds

.github/workflows/linux-simple-builds.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@ on: [push, pull_request]
55
jobs:
66
build:
77
name: ${{matrix.cxx}}, C++${{matrix.std}}, ${{matrix.build_type}}
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-22.04
99
strategy:
10+
fail-fast: false
1011
matrix:
1112
cxx:
12-
- g++-5
13-
- g++-6
1413
- g++-7
1514
- g++-8
1615
- g++-9
@@ -23,10 +22,6 @@ jobs:
2322
build_type: [Debug, Release]
2423
std: [14]
2524
include:
26-
- cxx: g++-5
27-
other_pkgs: g++-5
28-
- cxx: g++-6
29-
other_pkgs: g++-6
3025
- cxx: g++-7
3126
other_pkgs: g++-7
3227
- cxx: g++-8
@@ -87,9 +82,9 @@ jobs:
8782

8883
- name: Add repositories for older GCC
8984
run: |
90-
sudo apt-add-repository 'deb http://azure.archive.ubuntu.com/ubuntu/ bionic main'
91-
sudo apt-add-repository 'deb http://azure.archive.ubuntu.com/ubuntu/ bionic universe'
92-
if: ${{ matrix.cxx == 'g++-5' || matrix.cxx == 'g++-6' }}
85+
sudo apt-add-repository 'deb http://azure.archive.ubuntu.com/ubuntu/ focal main'
86+
sudo apt-add-repository 'deb http://azure.archive.ubuntu.com/ubuntu/ focal universe'
87+
if: ${{ matrix.cxx == 'g++-7' || matrix.cxx == 'g++-8' }}
9388

9489
- name: Prepare environment
9590
run: |

.github/workflows/package-manager-builds.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [push, pull_request]
55
jobs:
66
conan_builds:
77
name: Conan ${{matrix.conan_version}}
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-22.04
99
strategy:
1010
matrix:
1111
conan_version:

.github/workflows/validate-header-guards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [push, pull_request]
55
jobs:
66
build:
77
# Set the type of machine to run on
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-22.04
99
steps:
1010

1111
- name: Checkout source code

0 commit comments

Comments
 (0)