-
Notifications
You must be signed in to change notification settings - Fork 44
162 lines (147 loc) Β· 4.33 KB
/
tests.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
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
160
161
162
name: Tests
on:
pull_request:
branches:
- "*"
push:
branches:
- main
merge_group:
jobs:
lint:
name: "π Checks"
runs-on: ubuntu-latest
steps:
- name: Set up bootstrap Go 1.21
uses: actions/[email protected]
with:
go-version: '1.21'
cache: false
id: go
- name: Check out code into the Go module directory
uses: actions/[email protected]
- name: Cache downloaded Go version
uses: actions/cache@v4
with:
path: |
~/sdk
~/go/bin/go*
~/go/pkg/mod
~/.cache/go-build
~/.cache/golangci-lint/
key: ${{ runner.os }}-go-sdk-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-sdk
- name: Check that source has been prepared
run: |
./tools/prepare-source.sh
if [ -n "$(git status --porcelain)" ]; then
echo
echo "Please include these changes in your branch (only first 5k lines): "
git status -vv | head -n5000
exit "1"
else
exit "0"
fi
- name: Build all binaries
run: make build
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
with:
version: v1.56.2
skip-cache: true
- name: Run unit tests
run: make unit-tests
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
with:
files: ./coverage.txt
token: ${{ secrets.CODECOV_TOKEN }}
speccheck:
name: "π openapi spec check"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install openapi-spec-validator
run: pip install openapi-spec-validator
- name: Check v1 spec
run: make check-api-spec
shellcheck:
name: "π Shellcheck"
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Run ShellCheck
uses: ludeeus/[email protected]
with:
ignore: vendor # We don't want to fix the code in vendored dependencies
env:
# don't check /etc/os-release sourcing and allow useless cats to live inside our codebase
# allow seemingly unreachable commands
SHELLCHECK_OPTS: -e SC1091 -e SC2002 -e SC2317
db-test:
name: "π DB check"
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: foobar
POSTGRES_DB: imagebuilder
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
go-version: '1.21'
- env:
MIGRATIONS_DIR: internal/db/migrations
TERN_MIGRATIONS_DIR: internal/db/migrations-tern
PGUSER: postgres
PGPASSWORD: foobar
PGDATABASE: imagebuilder
PGHOST: localhost
PGPORT: 5432
run: |
make dev-prerequisites
./tools/dbtest-entrypoint.sh
kube-linter:
name: "π kube-linter"
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: redhat-actions/oc-installer@v1
- name: Process template
run: |
mkdir processed-templates
oc process -f templates/image-builder.yml \
-p IMAGE_TAG=image_tag \
--local \
-o yaml > processed-templates/image-builder.yml
oc process -f templates/iqe-trigger-integration.yml \
-p IMAGE_TAG=image_tag \
--local \
-o yaml > processed-templates/iqe-trigger-integration.yml
- uses: stackrox/[email protected]
with:
directory: processed-templates
config: templates/.kube-linter-config.yml
container-test:
name: "π’ container test"
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Install Prerequisites
run: |
sudo apt update
sudo apt install -y podman
- name: Build and test maintenance container
run: make ubi-maintenance-container-test