Skip to content

Commit 9c9b5ac

Browse files
committed
Bump minimum ubuntu runner version to 22.04 since 20.04 is deprecated as of April 16, 2025
1 parent 8a1c412 commit 9c9b5ac

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.github/workflows/build-linux.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: Linux CI
33
on:
44
pull_request:
55
paths-ignore:
6-
- '**.md'
7-
- '**.ipynb'
8-
- 'myst.yml'
6+
- "**.md"
7+
- "**.ipynb"
8+
- "myst.yml"
99

1010
# Every time you make a push to your PR, it cancel immediately the previous checks,
1111
# and start a new one. The other runner will be available more quickly to your PR.
@@ -31,22 +31,22 @@ jobs:
3131
# See https://help.github.com/en/articles/workflow-syntax-for-github-actions.
3232
name: [
3333
# "Bracket" the versions from GCC [9-14] and Clang [9-16]
34-
ubuntu-20.04-gcc-9,
35-
ubuntu-20.04-clang-9,
34+
ubuntu-22.04-gcc-9,
35+
ubuntu-22.04-clang-9,
3636
ubuntu-24.04-gcc-14,
3737
ubuntu-24.04-clang-16,
3838
]
3939

4040
build_type: [Debug, Release]
4141
build_unstable: [ON]
4242
include:
43-
- name: ubuntu-20.04-gcc-9
44-
os: ubuntu-20.04
43+
- name: ubuntu-22.04-gcc-9
44+
os: ubuntu-22.04
4545
compiler: gcc
4646
version: "9"
4747

48-
- name: ubuntu-20.04-clang-9
49-
os: ubuntu-20.04
48+
- name: ubuntu-22.04-clang-9
49+
os: ubuntu-22.04
5050
compiler: clang
5151
version: "9"
5252

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ matrices.
1515

1616
The current support matrix is:
1717

18-
| Platform | Compiler | Build Status |
19-
|:------------------:|:---------:|:--------------------------------------------------------------------------------:|
20-
| Ubuntu 20.04/22.04 | gcc/clang | ![Linux CI](https://github.com/borglab/gtsam/workflows/Linux%20CI/badge.svg) |
21-
| macOS | clang | ![macOS CI](https://github.com/borglab/gtsam/workflows/macOS%20CI/badge.svg) |
22-
| Windows | MSVC | ![Windows CI](https://github.com/borglab/gtsam/workflows/Windows%20CI/badge.svg) |
18+
| Platform | Compiler | Build Status |
19+
| :----------: | :-------: | :------------------------------------------------------------------------------: |
20+
| Ubuntu 22.04 | gcc/clang | ![Linux CI](https://github.com/borglab/gtsam/workflows/Linux%20CI/badge.svg) |
21+
| macOS | clang | ![macOS CI](https://github.com/borglab/gtsam/workflows/macOS%20CI/badge.svg) |
22+
| Windows | MSVC | ![Windows CI](https://github.com/borglab/gtsam/workflows/Windows%20CI/badge.svg) |
2323

2424

2525
On top of the C++ library, GTSAM includes [wrappers for MATLAB & Python](#wrappers).

0 commit comments

Comments
 (0)