Jazzy for pr safety #266
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ jazzy ] | |
pull_request: | |
branches: [ jazzy ] | |
jobs: | |
CI: | |
permissions: | |
contents: read | |
packages: write | |
issues: read | |
checks: write | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Prepare | |
run: | | |
mkdir -p ${{github.workspace}}/src | |
- uses: actions/checkout@v4 | |
with: | |
path: src/ethercat_driver_ros2 | |
- name: Build Docker Image | |
uses: docker/build-push-action@v5 | |
with: | |
tags: ethercat_driver_ros2:jazzy | |
file: .docker/Dockerfile | |
push: false | |
- name: Build | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: ethercat_driver_ros2:jazzy | |
options: -v ${{github.workspace}}/:/ros/ | |
run: | | |
cd /ros | |
# Install click, try via apt first, fallback to pip with --break-system-packages | |
apt-get update | |
apt-get install -y python3-click || (apt-get install -y python3-pip && python3 -m pip install --break-system-packages click) | |
# Install both system and ROS2 yaml-cpp packages | |
apt-get install -y libyaml-cpp-dev ros-jazzy-yaml-cpp-vendor pkg-config | |
. /opt/ros/jazzy/setup.sh | |
rosdep install --ignore-src --from-paths . -y -r && \ | |
colcon build --cmake-args -DCMAKE_BUILD_TYPE=Release | |
- name: Tests | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: ethercat_driver_ros2:jazzy | |
options: -v ${{github.workspace}}/:/ros/ | |
run: | | |
cd /ros | |
# Install click, try via apt first, fallback to pip with --break-system-packages | |
apt-get update | |
apt-get install -y python3-click || (apt-get install -y python3-pip && python3 -m pip install --break-system-packages click) | |
# Install both system and ROS2 yaml-cpp packages | |
apt-get install -y libyaml-cpp-dev ros-jazzy-yaml-cpp-vendor pkg-config | |
. /opt/ros/jazzy/setup.sh | |
rosdep install --ignore-src --from-paths . -y -r && \ | |
colcon build --cmake-args -DCMAKE_BUILD_TYPE=Release | |
colcon test | |
colcon test-result | |
- name: Upload Tests to Artifacts | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: test-results | |
path: build/*/test_results/*/*.xml | |
- name: Publish Unit Test Results | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
if: always() | |
with: | |
files: build/*/test_results/*/*.xml |