11name : Industrial CI pipeline
2- on : [push, pull_request]
2+ on :
3+ push :
4+ pull_request :
5+ schedule :
6+ - cron : ' 0 7 * * *'
7+
38
49jobs :
510 format_check :
611 runs-on : ubuntu-latest
712
813 steps :
9- - uses : actions/checkout@v2
10- - uses : ' ros-industrial/industrial_ci@master'
11- env :
12- ROS_DISTRO : melodic
13- CLANG_FORMAT_CHECK : file
14- CLANG_FORMAT_VERSION : " 9"
14+ - uses : actions/checkout@v2
15+ - uses : ' ros-industrial/industrial_ci@master'
16+ env :
17+ ROS_DISTRO : melodic
18+ CLANG_FORMAT_CHECK : file
19+ CLANG_FORMAT_VERSION : " 9"
1520
1621 build :
1722 runs-on : ubuntu-latest
23+ continue-on-error : ${{ matrix.env.experimental }}
1824 strategy :
1925 fail-fast : false
2026 matrix :
@@ -25,24 +31,28 @@ jobs:
2531 DOCKER_RUN_OPTS : --network static_test_net
2632 BEFORE_INIT : ' apt-get update -qq && apt-get install -y iproute2 iputils-ping && ip addr && ping -c5 192.168.56.101'
2733 IMMEDIATE_TEST_OUTPUT : true
34+ experimental : false
2835 - ROS_DISTRO : noetic
2936 ROS_REPO : main
3037 UPSTREAM_WORKSPACE : .noetic.rosinstall
3138 DOCKER_RUN_OPTS : --network static_test_net
3239 BEFORE_INIT : ' apt-get update -qq && apt-get install -y iproute2 iputils-ping && ip addr && ping -c5 192.168.56.101'
3340 IMMEDIATE_TEST_OUTPUT : true
41+ experimental : false
3442 - ROS_DISTRO : melodic
3543 ROS_REPO : testing
3644 UPSTREAM_WORKSPACE : .melodic.rosinstall
3745 DOCKER_RUN_OPTS : --network static_test_net
3846 BEFORE_INIT : ' apt-get update -qq && apt-get install -y iproute2 iputils-ping && ip addr && ping -c5 192.168.56.101'
3947 IMMEDIATE_TEST_OUTPUT : true
48+ experimental : true
4049 - ROS_DISTRO : noetic
4150 ROS_REPO : testing
4251 UPSTREAM_WORKSPACE : .noetic.rosinstall
4352 DOCKER_RUN_OPTS : --network static_test_net
4453 BEFORE_INIT : ' apt-get update -qq && apt-get install -y iproute2 iputils-ping && ip addr && ping -c5 192.168.56.101'
4554 IMMEDIATE_TEST_OUTPUT : true
55+ experimental : true
4656
4757 steps :
4858 - uses : actions/checkout@v1
0 commit comments