chore: add Dependabot config that check for new ver of GitHub Action … #14
This file contains 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: Test | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
build-and-test: | |
name: Build and Test | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
ros2-distro: [humble, iron] | |
steps: | |
- name: Checkout this repository | |
uses: actions/checkout@v2.3.4 | |
- name: Checkout ROS 2 examples on non master branch | |
uses: actions/checkout@v2.3.4 | |
with: | |
repository: ros2/examples | |
ref: ${{ matrix.ros2-distro }} | |
path: examples | |
- name: Only test some packages | |
run: | | |
mv examples/rclcpp/topics cpptopics | |
mv examples/rclpy/topics pytopics | |
rm -rf examples | |
- name: Test the action | |
uses: ./ | |
with: | |
ros2-distro: ${{ matrix.ros2-distro }} | |
- name: Upload build result | |
uses: actions/upload-artifact@v2.2.3 | |
with: | |
name: Install | |
path: install | |
failed-build: | |
name: Failed Build | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout this repository | |
uses: actions/checkout@v2.3.4 | |
- name: Checkout ROS 2 examples | |
uses: actions/checkout@v2.3.4 | |
with: | |
repository: ros2/examples | |
ref: iron | |
path: examples | |
- name: Adjust packages | |
run: | | |
mv examples/rclcpp/topics/minimal_publisher . | |
rm -rf examples minimal_publisher/lambda.cpp | |
- name: Test the action | |
id: action | |
continue-on-error: true | |
uses: ./ | |
- name: Fails if previous step has succeeded | |
if: ${{ steps.action.outcome == 'success' }} | |
run: false | |
failed-test: | |
name: Failed Test | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout this repository | |
uses: actions/checkout@v2.3.4 | |
- name: Checkout ROS 2 examples | |
uses: actions/checkout@v2.3.4 | |
with: | |
repository: ros2/examples | |
ref: iron | |
path: examples | |
- name: Adjust packages | |
run: | | |
mv examples/rclcpp/topics/minimal_publisher . | |
sed -i 's/return 0;/int unused; return 0;/g' minimal_publisher/lambda.cpp | |
- name: Test the action | |
id: action | |
continue-on-error: true | |
uses: ./ | |
- name: Fails if previous step has succeeded | |
if: ${{ steps.action.outcome == 'success' }} | |
run: false |