-
Notifications
You must be signed in to change notification settings - Fork 18
62 lines (59 loc) · 1.83 KB
/
Copy pathmain.yml
File metadata and controls
62 lines (59 loc) · 1.83 KB
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
name: Main workflow
permissions:
contents: read
packages: write
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
ui-lint:
uses: ./.github/workflows/ui-lint.yaml
ui-typecheck:
uses: ./.github/workflows/ui-typecheck.yaml
go-unit-test:
uses: ./.github/workflows/go-unittest.yaml
upf-ebpf-test:
uses: ./.github/workflows/upf-ebpf-tests.yaml
go-race-detection-test:
uses: ./.github/workflows/go-racedetect.yaml
go-vet:
uses: ./.github/workflows/go-vet.yaml
go-lint:
uses: ./.github/workflows/go-lint.yaml
go-sec:
uses: ./.github/workflows/go-sec.yaml
clang-format:
uses: ./.github/workflows/clang-format.yaml
clang-tidy:
uses: ./.github/workflows/clang-tidy.yaml
image-build:
needs: [go-unit-test, go-vet, go-lint]
uses: ./.github/workflows/image-build.yaml
image-build-tester:
needs: [go-unit-test, go-vet, go-lint]
uses: ./.github/workflows/image-build-tester.yaml
integration-tests:
needs: [image-build, image-build-tester]
uses: ./.github/workflows/integration-tests.yaml
integration-tests-api-matrix:
needs: [image-build, image-build-tester]
uses: ./.github/workflows/integration-tests-api-matrix.yaml
integration-tests-ha:
needs: [image-build]
uses: ./.github/workflows/integration-tests-ha.yaml
integration-tests-api-matrix-ha:
needs: [image-build]
uses: ./.github/workflows/integration-tests-api-matrix-ha.yaml
integration-tests-ha3gpp:
needs: [image-build, image-build-tester]
uses: ./.github/workflows/integration-tests-ha3gpp.yaml
integration-tests-bgp:
needs: [image-build, image-build-tester]
uses: ./.github/workflows/integration-tests-bgp.yaml
integration-tests-rolling-upgrade:
needs: [image-build]
uses: ./.github/workflows/integration-tests-rolling-upgrade.yaml