-
Notifications
You must be signed in to change notification settings - Fork 21
54 lines (51 loc) · 1.53 KB
/
industrial_ci_humble.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: ROS-Industrial CI humble
run-name: ROS-Industrial CI - ${{ github.event_name }}
on:
push:
branches:
- humble
pull_request:
branches:
- humble
schedule:
# Run every Monday at 1PM UTC
- cron: 0 13 * * 1
jobs:
industrial_ci:
name: ROS-Industrial CI
strategy:
matrix:
env:
- ROS_REPO: ros
BUILDER: colcon
ROS_DISTRO: humble
env:
CCACHE_DIR: /github/home/.ccache # Directory for ccache (and how we enable ccache in industrial_ci)
EVENT_NAME: ${{ github.event_name }}
BRANCH: ${{ github.event.ref }}
PR_BRANCH: ${{ github.event.pull_request.head.ref }}
PR_BASE: ${{ github.event.pull_request.base.ref }}
PR_NUMBER: ${{ github.event.number }}
ANALYZER_TOKEN: ${{ secrets.ANALYZER_TOKEN }}
DEBUG_BASH: true
runs-on: ubuntu-latest
steps:
- name: Checkout code
if: github.event.schedule != ''
uses: actions/checkout@v2
with:
fetch-depth: 0
ref: humble
- name: Checkout humble branch for scheduled runs
if: github.event.schedule == ''
uses: actions/checkout@v2
with:
fetch-depth: 0
# This step will fetch/store the directory used by ccache before/after the ci run
- uses: actions/cache@v4
with:
path: ${{ env.CCACHE_DIR }}
key: ccache-${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }}
# Run industrial_ci
- uses: 'kroshu/industrial_ci@master'
env: ${{ matrix.env }}