Skip to content

Commit

Permalink
Use Ubuntu 24.04 Noble for GitHub CI
Browse files Browse the repository at this point in the history
Signed-off-by: Christophe Bedard <[email protected]>
  • Loading branch information
christophebedard committed Mar 27, 2024
1 parent 0d720e1 commit 6e69826
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/sanity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ on:
- cron: "0 5 * * *"
jobs:
binary:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
container:
image: ubuntu:24.04
continue-on-error: true
strategy:
fail-fast: false
Expand Down Expand Up @@ -51,7 +53,9 @@ jobs:
source install/setup.bash
(! ros2 run tracetools status)
source:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
container:
image: ubuntu:24.04
continue-on-error: true
strategy:
fail-fast: false
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,32 +8,34 @@ on:
- cron: "0 5 * * *"
jobs:
test:
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
container:
image: ${{ matrix.os }}
continue-on-error: ${{ matrix.build-type == 'binary' }}
strategy:
fail-fast: false
matrix:
include:
# Normal build (binary)
- os: ubuntu-22.04
- os: ubuntu:24.04
distro: rolling
build-type: binary
instrumentation: instr-enabled
tracepoints: tp-included
# Normal build (source)
- os: ubuntu-22.04
- os: ubuntu:24.04
distro: rolling
build-type: source
instrumentation: instr-enabled
tracepoints: tp-included
# Build with instrumentation disabled
- os: ubuntu-22.04
- os: ubuntu:24.04
distro: rolling
build-type: source
instrumentation: instr-disabled
tracepoints: tp-included
# Normal build with tracepoints excluded
- os: ubuntu-22.04
- os: ubuntu:24.04
distro: rolling
build-type: source
instrumentation: instr-enabled
Expand Down

0 comments on commit 6e69826

Please sign in to comment.