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 eff4c89
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 0 deletions.
File renamed without changes.
60 changes: 60 additions & 0 deletions .github/workflows/ci-rolling.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: CI
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

- 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 eff4c89

Please sign in to comment.