Skip to content

Commit

Permalink
Replace setup step with docker image
Browse files Browse the repository at this point in the history
Signed-off-by: Michael X. Grey <[email protected]>
  • Loading branch information
mxgrey committed Dec 11, 2023
1 parent 3ad880a commit 22ab63f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/asan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,11 @@ jobs:
asan:
name: asan
runs-on: ubuntu-22.04
container:
image: osrf/ros:iron-desktop-jammy
steps:
- name: create_blacklist
run: echo "fun:*Eigen*" > /home/runner/work/blacklist.txt
- name: deps
uses: ros-tooling/[email protected]
with:
required-ros-distributions: iron
- name: build_and_test
uses: ros-tooling/[email protected]
env:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ jobs:
- rolling
include:
# Humble Hawksbill (May 2022 - May 2027)
- docker_image: ubuntu:jammy
- ubuntu_distribution: jammy
ros_distribution: humble
ros_version: 2
# Iron Irwini (May 2023 - November 2024)
- docker_image: ubuntu:jammy
- ubuntu_distribution: jammy
ros_distribution: iron
ros_version: 2
# Rolling Ridley (No End-Of-Life)
- docker_image: ubuntu:jammy
- ubuntu_distribution: jammy
ros_distribution: rolling
ros_version: 2
container:
image: ${{ matrix.docker_image }}
image: osrf/ros:${{ matrix.ros_distribution }}-desktop-${{ matrix.ubuntu_distribution }}
steps:
- name: pwd
run: pwd
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/tsan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,9 @@ jobs:
tsan:
name: tsan
runs-on: ubuntu-22.04
container:
image: osrf/ros:iron-desktop-jammy
steps:
- name: deps
uses: ros-tooling/[email protected]
with:
required-ros-distributions: iron
- name: tsan_build_test
uses: ros-tooling/[email protected]
id: tsan_build_test
Expand Down

0 comments on commit 22ab63f

Please sign in to comment.