-
Notifications
You must be signed in to change notification settings - Fork 68
34 lines (32 loc) · 998 Bytes
/
iron.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
name: Industiral CI Iron
on:
push:
branches: [ iron ]
pull_request:
branches: [ iron ]
workflow_dispatch:
jobs:
industrial_ci:
name: ROS ${{ matrix.ROS_DISTRO }} (${{ matrix.ROS_REPO }})
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
ROS_DISTRO: [iron]
ROS_REPO: [testing]
env:
CCACHE_DIR: "${{ github.workspace }}/.ccache"
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ${{ env.CCACHE_DIR }}
key: ccache-${{ matrix.ROS_DISTRO }}-${{ matrix.ROS_REPO }}-${{github.run_id}}
restore-keys: |
ccache-${{ matrix.ROS_DISTRO }}-${{ matrix.ROS_REPO }}-
- uses: 'ros-industrial/industrial_ci@master'
env:
BEFORE_INSTALL_TARGET_DEPENDENCIES: 'sudo apt-get update'
ROS_DISTRO: ${{ matrix.ROS_DISTRO }}
ROS_REPO: ${{ matrix.ROS_REPO }}
NOT_TEST_BUILD: 1