Fix node name in config.yaml (#11) #40
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: foxy build | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
foxy_build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: cancle preivious run | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
# downgrade cmake necessary because of https://github.com/vrpn/vrpn/pull/276 | |
- name: Setup cmake | |
uses: jwlawson/[email protected] | |
with: | |
cmake-version: '3.16.x' | |
- name: setup ROS2 | |
uses: ros-tooling/[email protected] | |
with: | |
use-ros2-testing: true # remove this once vrpn package goes into foxy index | |
required-ros-distributions: foxy | |
- name: ROS2 build and test | |
uses: ros-tooling/[email protected] | |
with: | |
package-name: vrpn_mocap | |
target-ros2-distro: foxy |