-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (37 loc) · 1.18 KB
/
main.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
name: CI
on:
push:
pull_request:
schedule:
- cron: '0 4 * * *'
jobs:
industrial_ci:
strategy:
fail-fast: false
matrix:
env:
- {CI_NAME: clang-format,
OS_NAME: ubuntu,
OS_CODE_NAME: bionic,
ROS_DISTRO: eloquent,
BADGE: bionic,
CLANG_FORMAT_CHECK: file,
CLANG_FORMAT_VERSION: 8,
}
- {OS_NAME: ubuntu,
OS_CODE_NAME: bionic,
ROS_DISTRO: eloquent,
ROSDEP_SKIP_KEYS: nvidia-cuda-dev iwyu,
BADGE: bionic,
ADDITIONAL_DEBS: iwyu,
UPSTREAM_CMAKE_ARGS: "-DCMAKE_LIBRARY_PATH=/usr/local/cuda/lib64/stubs/",
UPSTREAM_WORKSPACE: 'github:ros-industrial/cmake_common_scripts#master github:ros-industrial/yak#devel github:schornakj/gl_depth_sim#feature/pure-cmake',
TARGET_CMAKE_ARGS: "-DBUILD_DEMO=True",
DOCKER_PULL: false,
DOCKER_IMAGE: "schornakj/yak-1:eloquent-cuda10.2",
}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: 'ros-industrial/industrial_ci@master'
env: ${{matrix.env}}