Skip to content

Commit 98b87e5

Browse files
author
Felix Exner
committed
Allow jobs with testing repo to fail
1 parent 88b8daf commit 98b87e5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020

2121
build:
2222
runs-on: ubuntu-latest
23+
continue-on-error: ${{ matrix.env.experimental }}
2324
strategy:
2425
fail-fast: false
2526
matrix:
@@ -30,24 +31,28 @@ jobs:
3031
DOCKER_RUN_OPTS: --network static_test_net
3132
BEFORE_INIT: 'apt-get update -qq && apt-get install -y iproute2 iputils-ping && ip addr && ping -c5 192.168.56.101'
3233
IMMEDIATE_TEST_OUTPUT: true
34+
experimental: false
3335
- ROS_DISTRO: noetic
3436
ROS_REPO: main
3537
UPSTREAM_WORKSPACE: .noetic.rosinstall
3638
DOCKER_RUN_OPTS: --network static_test_net
3739
BEFORE_INIT: 'apt-get update -qq && apt-get install -y iproute2 iputils-ping && ip addr && ping -c5 192.168.56.101'
3840
IMMEDIATE_TEST_OUTPUT: true
41+
experimental: false
3942
- ROS_DISTRO: melodic
4043
ROS_REPO: testing
4144
UPSTREAM_WORKSPACE: .melodic.rosinstall
4245
DOCKER_RUN_OPTS: --network static_test_net
4346
BEFORE_INIT: 'apt-get update -qq && apt-get install -y iproute2 iputils-ping && ip addr && ping -c5 192.168.56.101'
4447
IMMEDIATE_TEST_OUTPUT: true
48+
experimental: true
4549
- ROS_DISTRO: noetic
4650
ROS_REPO: testing
4751
UPSTREAM_WORKSPACE: .noetic.rosinstall
4852
DOCKER_RUN_OPTS: --network static_test_net
4953
BEFORE_INIT: 'apt-get update -qq && apt-get install -y iproute2 iputils-ping && ip addr && ping -c5 192.168.56.101'
5054
IMMEDIATE_TEST_OUTPUT: true
55+
experimental: true
5156

5257
steps:
5358
- uses: actions/checkout@v1

0 commit comments

Comments
 (0)