update compatibility matrix #138
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: | |
| push: | |
| branches: [ jazzy, develop ] | |
| pull_request: | |
| branches: [ jazzy, develop ] | |
| jobs: | |
| CI: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Prepare | |
| run: | | |
| mkdir -p ${{github.workspace}}/src | |
| - uses: actions/checkout@v2 | |
| with: | |
| path: src/franka_ros2 | |
| - name: VCS Import Dependencies | |
| working-directory: src/franka_ros2 | |
| run: | | |
| sudo pip install vcstool | |
| vcs import < dependency.repos --recursive | |
| - name: Build Docker Image | |
| uses: docker/build-push-action@v2 | |
| with: | |
| tags: franka_ros2:jazzy | |
| file: Dockerfile | |
| push: false | |
| - name: Build | |
| uses: addnab/docker-run-action@v3 | |
| with: | |
| image: franka_ros2:jazzy | |
| options: -v ${{github.workspace}}/:/ros/ | |
| run: | | |
| cd /ros | |
| . /opt/ros/jazzy/setup.sh | |
| colcon build --cmake-args -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCHECK_TIDY=ON | |
| - name: Test | |
| uses: addnab/docker-run-action@v3 | |
| with: | |
| image: franka_ros2:jazzy | |
| options: -v ${{github.workspace}}/:/ros/ | |
| run: | | |
| cd /ros | |
| . /opt/ros/jazzy/setup.sh | |
| . install/setup.sh | |
| colcon test --packages-ignore hardware_interface realtime_tools libfranka controller_manager --event-handlers console_direct+ | |
| colcon test-result --verbose | |
| - 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@v1 | |
| if: always() | |
| with: | |
| files: build/*/test_results/*/*.xml |