forked from jsk-ros-pkg/coral_usb_ros
-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (34 loc) · 1.42 KB
/
testing.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
name: Testing CI
on:
push:
pull_request:
schedule:
- cron: "0 0 * * *"
jobs:
industrial_ci:
strategy:
matrix:
env:
- ROS_DISTRO: noetic
ROS_REPO: testing
NOT_TEST_BUILD: true
- ROS_DISTRO: melodic
ROS_REPO: testing
UPSTREAM_WORKSPACE: '.ci.rosinstall.melodic'
UPSTREAM_CMAKE_ARGS: '-DPYTHON_EXECUTABLE=/usr/bin/python3 -DPYTHON_INCLUDE_DIR=/usr/include/python3.6m -DPYTHON_LIBRARY=/usr/lib/x86_64-linux-gnu/libpython3.6m.so'
ADDITIONAL_DEBS: 'python3-catkin-pkg-modules python3-rospkg-modules python3-opencv python3-venv python3-empy python-catkin-tools'
NOT_TEST_BUILD: true
- ROS_DISTRO: kinetic
ROS_REPO: testing
UPSTREAM_WORKSPACE: '.ci.rosinstall.kinetic'
UPSTREAM_CMAKE_ARGS: '-DPYTHON_EXECUTABLE=/usr/bin/python3 -DPYTHON_INCLUDE_DIR=/usr/include/python3.5m -DPYTHON_LIBRARY=/usr/lib/x86_64-linux-gnu/libpython3.5m.so'
ADDITIONAL_DEBS: 'python3-catkin-pkg-modules python3-rospkg-modules python3-numpy ros-kinetic-opencv3 python3-venv python3-empy python-catkin-tools'
ROSDEP_SKIP_KEYS: 'python-numpy'
NOT_TEST_BUILD: true
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Industrial CI
uses: 'ros-industrial/industrial_ci@master'
env: ${{matrix.env}}