-
Notifications
You must be signed in to change notification settings - Fork 20
82 lines (75 loc) · 1.95 KB
/
ci.yml
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
name: Continuous integration
on:
pull_request: # All
push:
branches:
- main
jobs:
hygiene-tests:
name: Repository hygiene
runs-on: ubuntu-latest
steps:
- name: Job information
run: |
echo "Job information"
echo "Trigger: ${{ github.event_name }}"
echo "Host: ${{ runner.os }}"
echo "Repository: ${{ github.repository }}"
echo "Branch: ${{ github.ref }}"
docker images
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
- name: Python lint
run: make python-lint
- name: Automated hygiene verification
run: make check-hygiene
- name: uss_qualifier documentation validation
run: make validate-uss-qualifier-docs
- name: Shell lint
run: make shell-lint
monitorlib-test:
name: monitorlib tests
uses: ./.github/workflows/monitoring-test.yml
with:
name: monitorlib
script: |
cd monitoring/monitorlib
make test
mock_uss-test:
name: mock_uss tests
uses: ./.github/workflows/monitoring-test.yml
with:
name: mock_uss
script: |
cd monitoring/mock_uss
make test
uss_qualifier-test:
name: uss_qualifier tests
uses: ./.github/workflows/monitoring-test.yml
with:
name: uss_qualifier
script: |
export CONFIG_NAME="" \
USS_QUALIFIER_STOP_FAST=true
cd monitoring/uss_qualifier
make test
uss_qualifier_F3411-19-test:
name: uss_qualifier F3411-19 tests
uses: ./.github/workflows/monitoring-test.yml
with:
name: uss_qualifier_F3411-19
script: |
export CONFIG_NAME=configurations.dev.netrid_v19 \
USS_QUALIFIER_STOP_FAST=true
cd monitoring/uss_qualifier
make test
prober-test:
name: prober tests
uses: ./.github/workflows/monitoring-test.yml
with:
name: prober
script: |
cd monitoring/prober
make test