Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Ubuntu 24.04 Noble for GitHub CI (backport #104) #133

Merged
merged 2 commits into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions .github/workflows/sanity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,23 @@ on:
pull_request:
push:
branches:
- rolling
- jazzy
schedule:
- cron: "0 5 * * *"
defaults:
run:
shell: bash
jobs:
binary:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
container:
image: ubuntu:24.04
continue-on-error: true
strategy:
fail-fast: false
matrix:
distro:
- rolling
- jazzy
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -51,13 +56,15 @@ 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
matrix:
distro:
- rolling
- jazzy
steps:
- uses: actions/checkout@v3
with:
Expand Down
25 changes: 15 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,38 +3,43 @@ on:
pull_request:
push:
branches:
- rolling
- jazzy
schedule:
- cron: "0 5 * * *"
defaults:
run:
shell: bash
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
distro: rolling
- os: ubuntu:24.04
distro: jazzy
build-type: binary
instrumentation: instr-enabled
tracepoints: tp-included
# Normal build (source)
- os: ubuntu-22.04
distro: rolling
- os: ubuntu:24.04
distro: jazzy
build-type: source
instrumentation: instr-enabled
tracepoints: tp-included
# Build with instrumentation disabled
- os: ubuntu-22.04
distro: rolling
- os: ubuntu:24.04
distro: jazzy
build-type: source
instrumentation: instr-disabled
tracepoints: tp-included
# Normal build with tracepoints excluded
- os: ubuntu-22.04
distro: rolling
- os: ubuntu:24.04
distro: jazzy
build-type: source
instrumentation: instr-enabled
tracepoints: tp-excluded
Expand Down
Loading