-
Notifications
You must be signed in to change notification settings - Fork 15
46 lines (39 loc) · 1.1 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:
push:
paths-ignore:
- 'doc/**'
- 'README.md'
- 'LICENSE'
# Required GitHub repository variables:
# https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job
# OPENDUT_GH_RUNNER_SMALL: runner labels for small jobs
# OPENDUT_GH_RUNNER_LARGE: runner labels for large jobs
jobs:
legal:
uses: ./.github/workflows/legal.yaml
# with:
# runs-on: "${{ vars.OPENDUT_GH_RUNNER_SMALL }}"
generate-sbom:
uses: ./.github/workflows/sbom.yaml
# with:
# runs-on: "${{ vars.OPENDUT_GH_RUNNER_SMALL }}"
test:
uses: ./.github/workflows/test.yaml
# with:
# runs-on: "${{ vars.OPENDUT_GH_RUNNER_LARGE }}"
build-carl:
uses: ./.github/workflows/build-carl.yaml
needs: [ test ]
# with:
# runs-on: "${{ vars.OPENDUT_GH_RUNNER_LARGE }}"
build-edgar:
uses: ./.github/workflows/build-edgar.yaml
needs: [ test ]
# with:
# runs-on: "${{ vars.OPENDUT_GH_RUNNER_LARGE }}"
build-lea:
uses: ./.github/workflows/build-lea.yaml
needs: [ test ]
# with:
# runs-on: "${{ vars.OPENDUT_GH_RUNNER_LARGE }}"