Skip to content

Commit

Permalink
added CI for rolling
Browse files Browse the repository at this point in the history
  • Loading branch information
mcbed committed Mar 1, 2023
1 parent 8949074 commit 55f342e
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml → .github/workflows/ci-humble.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: CI-Humble
on:
push:
branches: [ main ]
Expand All @@ -21,6 +21,7 @@ jobs:
tags: ethercat_driver_ros2:humble
file: .docker/Dockerfile
push: false
build-args: ROS_DISTRO=humble

- name: Build
uses: addnab/docker-run-action@v3
Expand Down
61 changes: 61 additions & 0 deletions .github/workflows/ci-rolling.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: CI-Rolling
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
CI:
runs-on: ubuntu-latest
steps:
- name: Prepare
run: |
mkdir -p ${{github.workspace}}/src
- uses: actions/checkout@v2
with:
path: src/ethercat_driver_ros2

- name: Build Docker Image
uses: docker/build-push-action@v2
with:
tags: ethercat_driver_ros2:rolling
file: .docker/Dockerfile
push: false
build-args: ROS_DISTRO=rolling

- name: Build
uses: addnab/docker-run-action@v3
with:
image: ethercat_driver_ros2:rolling
options: -v ${{github.workspace}}/:/ros/
run: |
cd /ros
. /opt/ros/rolling/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:rolling
options: -v ${{github.workspace}}/:/ros/
run: |
cd /ros
. /opt/ros/rolling/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@v2
if: always()
with:
name: test-results
path: build/*/test_results/*/*.xml

- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
if: always()
with:
files: build/*/test_results/*/*.xml

0 comments on commit 55f342e

Please sign in to comment.