-
Notifications
You must be signed in to change notification settings - Fork 6
159 lines (152 loc) · 4.73 KB
/
ci.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
---
name: CI
on: # yamllint disable-line rule:truthy
- push
- pull_request
# Note: ca-certificates and git are needed for actions/checkout to use git
# which is needed for codecov/codecov-action.
jobs:
install:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
container:
- debian:bookworm-slim
- debian:testing-slim
- debian:unstable-slim
- ubuntu:jammy
- ubuntu:noble
- ubuntu:oracular
container:
image: ${{ matrix.container }}
options: --privileged
steps:
- name: Install dependencies
run: >
apt-get update &&
apt-get install --no-install-recommends --yes ca-certificates git
pandoc python3 python3-coverage python3-ruamel.yaml python3-setuptools
- uses: actions/checkout@v4
- name: Run build
run: python3 -m coverage run --branch setup.py build
- name: Run install
run: python3 -m coverage run -a --branch setup.py install
- name: Run clean
run: python3 -m coverage run -a --branch setup.py clean
- name: Coverage report
run: python3 -m coverage xml
- name: Install dependencies for Codecov
run: apt-get install --no-install-recommends --yes curl gpg gpg-agent
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
files: ./coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}
unittest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
container:
- debian:bookworm-slim
- debian:testing-slim
- debian:unstable-slim
- ubuntu:jammy
- ubuntu:noble
- ubuntu:oracular
container:
image: ${{ matrix.container }}
steps:
- name: Install dependencies
run: >
apt-get update &&
apt-get install --no-install-recommends --yes black ca-certificates
git isort pylint python3 python3-coverage python3-flake8
python3-ruamel.yaml shellcheck
- uses: actions/checkout@v4
- name: Run unit tests
run: |
python3 -m coverage run -m unittest discover -v
python3 -m coverage xml
- name: Install dependencies for Codecov
run: apt-get install --no-install-recommends --yes curl gpg gpg-agent
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
files: ./coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}
skip-linters:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
container:
- debian:bookworm-slim
- debian:testing-slim
- debian:unstable-slim
- ubuntu:jammy
- ubuntu:noble
- ubuntu:oracular
container:
image: ${{ matrix.container }}
steps:
- name: Install dependencies
run: >
apt-get update &&
apt-get install --no-install-recommends --yes ca-certificates git
pylint python3 python3-coverage python3-ruamel.yaml
- uses: actions/checkout@v4
- name: Run unit tests
run: |
SKIP_LINTERS=1 python3 -m coverage run -m unittest discover -v
python3 -m coverage xml
- name: Install dependencies for Codecov
run: apt-get install --no-install-recommends --yes curl gpg gpg-agent
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
files: ./coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}
system-testing:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
container:
- debian:testing-slim
- debian:unstable-slim
- ubuntu:jammy
- ubuntu:noble
- ubuntu:oracular
container:
image: ${{ matrix.container }}
options: --privileged
env:
DEBIAN_FRONTEND: noninteractive
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: >
apt-get update &&
apt-get install --no-install-recommends --yes debian-archive-keyring
diffoscope-minimal distro-info-data dpkg-dev mmdebstrap
python3-ruamel.yaml python3 squashfs-tools-ng ubuntu-keyring
- name: Run system-testing
run: ./system-testing
yamllint:
runs-on: ubuntu-latest
container:
image: debian:testing-slim
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
apt-get update
apt-get install --no-install-recommends --yes yamllint
- name: Run yamllint
run: |
yamllint .