Bump minimum ubuntu runner version to 22.04 since 20.04 is deprecated as of April 16, 2025
parent
8a1c4120bb
commit
9c9b5ac32b
|
@ -3,9 +3,9 @@ name: Linux CI
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- '**.md'
|
- "**.md"
|
||||||
- '**.ipynb'
|
- "**.ipynb"
|
||||||
- 'myst.yml'
|
- "myst.yml"
|
||||||
|
|
||||||
# Every time you make a push to your PR, it cancel immediately the previous checks,
|
# Every time you make a push to your PR, it cancel immediately the previous checks,
|
||||||
# and start a new one. The other runner will be available more quickly to your PR.
|
# and start a new one. The other runner will be available more quickly to your PR.
|
||||||
|
@ -31,8 +31,8 @@ jobs:
|
||||||
# See https://help.github.com/en/articles/workflow-syntax-for-github-actions.
|
# See https://help.github.com/en/articles/workflow-syntax-for-github-actions.
|
||||||
name: [
|
name: [
|
||||||
# "Bracket" the versions from GCC [9-14] and Clang [9-16]
|
# "Bracket" the versions from GCC [9-14] and Clang [9-16]
|
||||||
ubuntu-20.04-gcc-9,
|
ubuntu-22.04-gcc-9,
|
||||||
ubuntu-20.04-clang-9,
|
ubuntu-22.04-clang-9,
|
||||||
ubuntu-24.04-gcc-14,
|
ubuntu-24.04-gcc-14,
|
||||||
ubuntu-24.04-clang-16,
|
ubuntu-24.04-clang-16,
|
||||||
]
|
]
|
||||||
|
@ -40,13 +40,13 @@ jobs:
|
||||||
build_type: [Debug, Release]
|
build_type: [Debug, Release]
|
||||||
build_unstable: [ON]
|
build_unstable: [ON]
|
||||||
include:
|
include:
|
||||||
- name: ubuntu-20.04-gcc-9
|
- name: ubuntu-22.04-gcc-9
|
||||||
os: ubuntu-20.04
|
os: ubuntu-22.04
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
version: "9"
|
version: "9"
|
||||||
|
|
||||||
- name: ubuntu-20.04-clang-9
|
- name: ubuntu-22.04-clang-9
|
||||||
os: ubuntu-20.04
|
os: ubuntu-22.04
|
||||||
compiler: clang
|
compiler: clang
|
||||||
version: "9"
|
version: "9"
|
||||||
|
|
||||||
|
|
10
README.md
10
README.md
|
@ -15,11 +15,11 @@ matrices.
|
||||||
|
|
||||||
The current support matrix is:
|
The current support matrix is:
|
||||||
|
|
||||||
| Platform | Compiler | Build Status |
|
| Platform | Compiler | Build Status |
|
||||||
|:------------------:|:---------:|:--------------------------------------------------------------------------------:|
|
| :----------: | :-------: | :------------------------------------------------------------------------------: |
|
||||||
| Ubuntu 20.04/22.04 | gcc/clang |  |
|
| Ubuntu 22.04 | gcc/clang |  |
|
||||||
| macOS | clang |  |
|
| macOS | clang |  |
|
||||||
| Windows | MSVC |  |
|
| Windows | MSVC |  |
|
||||||
|
|
||||||
|
|
||||||
On top of the C++ library, GTSAM includes [wrappers for MATLAB & Python](#wrappers).
|
On top of the C++ library, GTSAM includes [wrappers for MATLAB & Python](#wrappers).
|
||||||
|
|
Loading…
Reference in New Issue