Skip to content

Commit ec2beb6

Browse files
author
Felix Exner
authored
Merge pull request #467 from fmauch/schedule_ci
Schedule ci
2 parents 54e24c0 + 98b87e5 commit ec2beb6

File tree

1 file changed

+17
-7
lines changed

1 file changed

+17
-7
lines changed

.github/workflows/ci.yml

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,26 @@
11
name: Industrial CI pipeline
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
pull_request:
5+
schedule:
6+
- cron: '0 7 * * *'
7+
38

49
jobs:
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

Comments
 (0)