-
Notifications
You must be signed in to change notification settings - Fork 13
114 lines (107 loc) · 2.9 KB
/
main.workflow.yaml
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
name: RAE ROS CI/CD
on:
workflow_dispatch:
push:
branches:
- humble
tags:
- 'v*'
pull_request:
branches:
- humble
env:
ROS_DISTRO: humble
jobs:
clang-format-lint:
name: ament_clang_format
runs-on: ubuntu-22.04
strategy:
fail-fast: false
steps:
- uses: actions/[email protected]
- uses: ros-tooling/[email protected]
with:
required-ros-distributions: ${{ env.ROS_DISTRO }}
- uses: ros-tooling/[email protected]
with:
distribution: ${{ env.ROS_DISTRO }}
linter: clang_format
arguments: --config ./.clang-format
package-name: |
rae_hw
linting:
name: ament_${{ matrix.linter }}
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
linter: [xmllint, pep257, lint_cmake]
steps:
- uses: actions/[email protected]
- uses: ros-tooling/[email protected]
with:
required-ros-distributions: ${{ env.ROS_DISTRO }}
- uses: ros-tooling/[email protected]
with:
distribution: ${{ env.ROS_DISTRO }}
linter: ${{ matrix.linter }}
package-name: |
rae_hw
rae_sdk
rae_description
rae_bringup
docker-build:
name: Build and Upload to Docker Hub
runs-on: ubuntu-22.04
strategy:
fail-fast: false
permissions:
contents: read
packages: write
env:
PUSH: ${{ (github.event_name != 'pull_request') && (github.repository == 'luxonis/rae-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 GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Get Version
if: env.PUSH == 'true'
id: vars
run: echo ::set-output name=short_ref::${GITHUB_REF#refs/*/}
- name: Build Robot
uses: docker/build-push-action@v3
if: env.PUSH == 'false'
with:
build-args: |
ROS_DISTRO=${{ env.ROS_DISTRO }}
USE_RVIZ=0
SIM=0
platforms: |
arm64
amd64
push: ${{ env.PUSH }}
no-cache: true
- name: Build and Push Robot
uses: docker/build-push-action@v3
if: env.PUSH == 'true'
with:
build-args: |
ROS_DISTRO=${{ env.ROS_DISTRO }}
USE_RVIZ=0
SIM=0
platforms: |
arm64
amd64
push: ${{ env.PUSH }}
no-cache: true
tags: |
ghcr.io/luxonis/rae-ros:${{ steps.vars.outputs.short_ref }}