-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Triggering the pipeline once a week seems fine for now.
- Loading branch information
1 parent
b2c6a67
commit 0dd426c
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Rolling | ||
|
||
on: | ||
push: | ||
pull_request: | ||
schedule: | ||
# Run every Friday at 6:30 am to detect breaking APIs | ||
- cron: '30 6 * * 5' | ||
|
||
|
||
|
||
jobs: | ||
industrial_ci: | ||
env: | ||
BEFORE_BUILD_TARGET_WORKSPACE: 'sudo apt-get install -y libboost-all-dev' | ||
UPSTREAM_WORKSPACE: 'github:SICKAG/sick_safevisionary_base#main' | ||
ROSDEP_SKIP_KEYS: 'sick_safevisionary_base' | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
env: | ||
- {ROS_DISTRO: rolling, ROS_REPO: testing} | ||
- {ROS_DISTRO: rolling, ROS_REPO: main} | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: 'ros-industrial/industrial_ci@master' | ||
env: ${{matrix.env}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters