Skip to content

Commit

Permalink
Use repos file for CI on Windows
Browse files Browse the repository at this point in the history
Signed-off-by: Jacob Perron <[email protected]>
  • Loading branch information
jacobperron committed Oct 21, 2021
1 parent db17a54 commit 4245fbb
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/build_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on: [pull_request]
jobs:
build_and_test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-latest]
runs-on: ${{ matrix.os }}
Expand All @@ -15,7 +16,15 @@ jobs:
install-connext: true
use-ros2-testing: true
required-ros-distributions: rolling
- uses: ros-tooling/[email protected]
with:
package-name: domain_bridge
target-ros2-distro: rolling
- if: runner.os == 'Windows'
uses: ros-tooling/[email protected]
with:
package-name: domain_bridge
target-ros2-distro: rolling
vcs-repo-file-url: >
https://raw.githubusercontent.com/ros2/ros2/master/ros2.repos
- if: runner.os != 'Windows'
uses: ros-tooling/[email protected]
with:
package-name: domain_bridge
target-ros2-distro: rolling

0 comments on commit 4245fbb

Please sign in to comment.