-
Notifications
You must be signed in to change notification settings - Fork 26
72 lines (60 loc) · 1.51 KB
/
build-and-publish.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
name: Build and Publish
on:
push:
branches:
- dev
pull_request:
branches:
- dev
jobs:
sanity-check:
uses: ./.github/workflows/ci-tests.yaml
build-ccpp:
uses: ./.github/workflows/build-ccpp.yaml
needs: sanity-check
build-debug-ccpp:
uses: ./.github/workflows/build-debug-ccpp.yaml
needs: sanity-check
build-debug-python:
uses: ./.github/workflows/build-debug-python.yaml
needs: sanity-check
build-python:
uses: ./.github/workflows/build-python.yaml
needs: sanity-check
build-debug-rust:
uses: ./.github/workflows/build-debug-rust.yaml
needs: sanity-check
build-rust:
uses: ./.github/workflows/build-rust.yaml
needs: sanity-check
build-dotnet:
uses: ./.github/workflows/build-dotnet.yaml
needs: sanity-check
build-debug-dotnet:
uses: ./.github/workflows/build-debug-dotnet.yaml
needs: sanity-check
publish-torizon-utils:
uses: ./.github/workflows/publish-torizon-utils.yaml
secrets: inherit
needs:
- build-ccpp
- build-debug-ccpp
- build-debug-python
- build-python
- build-debug-rust
- build-rust
- build-dotnet
- build-debug-dotnet
publish-torizon-dev:
uses: ./.github/workflows/build-publish-torizon-dev.yaml
secrets: inherit
needs:
- publish-torizon-utils
- build-ccpp
- build-debug-ccpp
- build-debug-python
- build-python
- build-debug-rust
- build-rust
- build-dotnet
- build-debug-dotnet