-
Notifications
You must be signed in to change notification settings - Fork 6
113 lines (108 loc) · 3.03 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
---
name: CI
on: # yamllint disable-line rule:truthy
- push
- pull_request
jobs:
install:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
container:
- debian:bullseye-slim
- debian:bookworm-slim
- debian:testing-slim
- debian:unstable-slim
- ubuntu:jammy
- ubuntu:lunar
- ubuntu:mantic
container:
image: ${{ matrix.container }}
options: --privileged
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: >
apt-get update &&
apt-get install --no-install-recommends --yes
pandoc python3 python3-ruamel.yaml python3-setuptools
- name: Run build
run: python3 setup.py build
- name: Run install
run: python3 setup.py install
unittest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
container:
- debian:bullseye-slim
- debian:bookworm-slim
- debian:testing-slim
- debian:unstable-slim
- ubuntu:jammy
- ubuntu:lunar
- ubuntu:mantic
container:
image: ${{ matrix.container }}
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: >
apt-get update &&
apt-get install --no-install-recommends --yes black isort pylint
python3 python3-coverage python3-flake8 python3-ruamel.yaml
shellcheck
- 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
ca-certificates curl git
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
files: ./coverage.xml
system-testing:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
container:
# - debian:testing-slim # missing ubuntu-keyring
- debian:unstable-slim
- ubuntu:jammy
- ubuntu:lunar
- ubuntu:mantic
container:
image: ${{ matrix.container }}
options: --privileged
env:
DEBIAN_FRONTEND: noninteractive
steps:
- uses: actions/checkout@v3
- 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@v3
- name: Install dependencies
run: |
apt-get update
apt-get install --no-install-recommends --yes yamllint
- name: Run yamllint
run: |
yamllint .