Skip to content

Commit c9e8d6d

Browse files
committed
Bump Ubuntu version in Python CI
1 parent 2291010 commit c9e8d6d

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/build-python.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@ jobs:
2222
id: filter
2323
uses: dorny/paths-filter@v3
2424
with:
25-
predicate-quantifier: 'every' # If any changed file matches every filter, proceed with build
25+
predicate-quantifier: "every" # If any changed file matches every filter, proceed with build
2626
filters: |
2727
relevant_changes:
2828
- '!**.md'
2929
- '!**.ipynb'
3030
- '!myst.yml'
31-
31+
3232
build:
3333
# Only run build if relevant files have been modified in this PR.
3434
needs: check-paths
3535
if: needs.check-paths.outputs.should_run == 'true'
36-
36+
3737
name: ${{ matrix.name }} ${{ matrix.build_type }} Python ${{ matrix.python_version }}
3838
runs-on: ${{ matrix.os }}
3939

@@ -52,8 +52,8 @@ jobs:
5252
# See https://help.github.com/en/articles/workflow-syntax-for-github-actions.
5353
name:
5454
[
55-
ubuntu-20.04-gcc-9,
56-
ubuntu-20.04-clang-9,
55+
ubuntu-22.04-gcc-9,
56+
ubuntu-22.04-clang-11,
5757
macos-13-xcode-14.2,
5858
macos-14-xcode-15.4,
5959
windows-2022-msbuild,
@@ -62,15 +62,15 @@ jobs:
6262
build_type: [Release]
6363
python_version: [3]
6464
include:
65-
- name: ubuntu-20.04-gcc-9
65+
- name: ubuntu-22.04-gcc-9
6666
os: ubuntu-20.04
6767
compiler: gcc
6868
version: "9"
6969

70-
- name: ubuntu-20.04-clang-9
70+
- name: ubuntu-22.04-clang-11
7171
os: ubuntu-20.04
7272
compiler: clang
73-
version: "9"
73+
version: "11"
7474

7575
- name: macos-13-xcode-14.2
7676
os: macos-13

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 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/24.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)