-
Notifications
You must be signed in to change notification settings - Fork 11
46 lines (44 loc) · 1.14 KB
/
build.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
name: build
on:
workflow_dispatch:
push:
jobs:
ros-robot:
uses: ./.github/workflows/debs-from-repos.yaml
with:
repos: ros-robot
ros-desktop:
if: success() || failure() # can get cancelled
needs: ros-robot
uses: ./.github/workflows/debs-from-repos.yaml
with:
repos: ros-desktop
depends: ros-robot
ros-desktop-full:
if: success() || failure() # can get cancelled
needs: ros-desktop
uses: ./.github/workflows/debs-from-repos.yaml
with:
repos: ros-desktop-full
depends: ros-desktop
universe-0:
if: success() || failure() # can get cancelled
needs: ros-desktop-full
uses: ./.github/workflows/debs-from-repos.yaml
with:
repos: universe-0
depends: ros-desktop-full
universe-1:
if: success() || failure() # can get cancelled
needs: universe-0
uses: ./.github/workflows/debs-from-repos.yaml
with:
repos: universe-1
depends: universe-0
universe-2:
if: success() || failure() # can get cancelled
needs: universe-1
uses: ./.github/workflows/debs-from-repos.yaml
with:
repos: universe-2
depends: universe-1