Fix race conditions in rmw_wait and map queries to clients (#153) #283
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: build | |
on: | |
pull_request: | |
push: | |
branches: [ rolling ] | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
docker_image: ['ros:iron-ros-base', 'ros:rolling-ros-base'] | |
container: | |
image: ${{ matrix.docker_image }} | |
timeout-minutes: 30 | |
steps: | |
- name: Deps | |
run: | | |
apt update && apt install -y curl | |
- name: Setup Rust | |
uses: dtolnay/[email protected] | |
- uses: actions/checkout@v2 | |
- name: rosdep | |
run: | | |
rosdep update | |
rosdep install --from-paths . -yir | |
- name: build | |
run: /ros_entrypoint.sh colcon build |