Extend mapping to index of an array #1277
Workflow file for this run
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 teleop_tools | |
on: | |
pull_request: | |
push: | |
schedule: | |
# Run every morning to detect flakiness and broken dependencies | |
- cron: '17 8 * * *' | |
jobs: | |
ci: | |
name: Foxy source job | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: ros-tooling/[email protected] | |
with: | |
required-ros-distributions: foxy | |
# workaround | |
- run: sudo RTI_NC_LICENSE_ACCEPTED=yes apt-get install -y rti-connext-dds-5.3.1 | |
- uses: ros-tooling/[email protected] | |
with: | |
target-ros2-distro: foxy | |
# build all packages listed in the meta package | |
package-name: | |
joy_teleop | |
key_teleop | |
mouse_teleop | |
teleop_tools | |
teleop_tools_msgs | |
colcon-mixin-name: coverage-gcc | |
colcon-mixin-repository: https://raw.githubusercontent.com/colcon/colcon-mixin-repository/master/index.yaml | |
- uses: codecov/codecov-action@v1 | |
with: | |
file: ros_ws/lcov/total_coverage.info | |
flags: unittests | |
name: codecov-umbrella | |
- uses: actions/upload-artifact@v1 | |
with: | |
name: colcon-logs-${{ matrix.os }} | |
path: ros_ws/log |