-
Notifications
You must be signed in to change notification settings - Fork 189
124 lines (115 loc) · 3.03 KB
/
main.workflow.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
name: DepthAI ROS CI/CD
on:
workflow_dispatch:
push:
branches:
- main
- humble
- galactic
- foxy
- iron
- jazzy
tags:
- 'v*'
pull_request:
branches:
- main
- humble
- galactic
- foxy
- iron
- jazzy
env:
ROS_DISTRO: humble
jobs:
clang-format-lint:
name: ament_clang_format
runs-on: ubuntu-22.04
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3.3.0
- uses: ros-tooling/setup-ros@0.7.8
with:
required-ros-distributions: ${{ env.ROS_DISTRO }}
- uses: ros-tooling/action-ros2-lint@0.1.3
with:
distribution: ${{ env.ROS_DISTRO }}
linter: clang_format
arguments: --config ./.clang-format
package-name: |
depthai_bridge
depthai_examples
depthai_ros_msgs
depthai_ros
linting:
name: ament_${{ matrix.linter }}
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
linter: [xmllint, pep257, lint_cmake]
steps:
- uses: actions/checkout@v3.3.0
- uses: ros-tooling/setup-ros@0.7.8
with:
required-ros-distributions: ${{ env.ROS_DISTRO }}
- uses: ros-tooling/action-ros2-lint@0.1.3
with:
distribution: ${{ env.ROS_DISTRO }}
linter: ${{ matrix.linter }}
package-name: |
depthai_bridge
depthai_examples
depthai_ros_msgs
depthai_ros
docker-build:
name: Build and Upload to Docker Hub
runs-on: ubuntu-22.04
strategy:
fail-fast: false
env:
PUSH: ${{ (github.event_name != 'pull_request') && (github.repository == 'luxonis/depthai-ros') && startsWith(github.ref, 'refs/tags/v') }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v1
if: env.PUSH == 'true'
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_PASS }}
- name: Get Version
if: env.PUSH == 'true'
id: vars
run: echo ::set-output name=short_ref::${GITHUB_REF#refs/*/}
- name: Build
uses: docker/build-push-action@v3
if: env.PUSH == 'false'
with:
build-args: |
ROS_DISTRO=${{ env.ROS_DISTRO }}
USE_RVIZ=1
platforms: |
amd64
arm64
no-cache: true
- name: Build and Push
uses: docker/build-push-action@v3
if: env.PUSH == 'true'
with:
build-args: |
ROS_DISTRO=${{ env.ROS_DISTRO }}
USE_RVIZ=1
platforms: |
amd64
arm64
push: ${{ env.PUSH }}
no-cache: true
tags: |
luxonis/depthai-ros:${{ steps.vars.outputs.short_ref }}
luxonis/depthai-ros:${{ env.ROS_DISTRO }}-latest