-
Notifications
You must be signed in to change notification settings - Fork 55
233 lines (195 loc) · 6.98 KB
/
pr.yaml
File metadata and controls
233 lines (195 loc) · 6.98 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
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
name: PR checks
on: pull_request
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
commits:
permissions:
pull-requests: read # to get list of commits from the PR
name: Signed-off-by (DCO)
runs-on: ubuntu-latest
steps:
- name: Get PR Commits
id: 'get-pr-commits'
uses: tim-actions/get-pr-commits@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Check that all commits are signed-off
uses: tim-actions/dco@master
with:
commits: ${{ steps.get-pr-commits.outputs.commits }}
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install dependencies
run: yarn install --immutable
- name: Lint scss
run: yarn lint-scss
- name: Lint JS
run: yarn lint-js
- name: Check circular dependencies
run: yarn check-circular-deps
check-inclusive-naming:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Check inclusive naming
uses: canonical/Inclusive-naming@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-pr-review
fail-on-error: true
check-unicode-characters:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Find disallowed Unicode characters (excluding .git and binary files)
run: |
echo "Scanning for disallowed Unicode characters..."
# Match non-ASCII characters except — ü and →
NON_ASCII_FILES=$(grep --color=always -P -n "[^\x00-\x7F—ü→\x{2713}\x{2717}]" -r . \
--exclude-dir=.git \
--exclude=*.png \
--exclude=*.woff2 \
--exclude=*.tar.gz || true)
if [ -n "$NON_ASCII_FILES" ]; then
echo "Disallowed Unicode characters found:"
echo "$NON_ASCII_FILES"
exit 1
else
echo "No disallowed Unicode characters found."
fi
browser-e2e-test:
name: e2e-tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
lxd_channel: ["5.0/edge", "5.21/edge", "latest/edge"]
browser: ["chromium", "firefox"]
deployment: ["unclustered", "clustered"]
outputs:
job_status: ${{job.status}}
env:
LXD_OIDC_CLIENT_ID: "RYDnMpkygLAMfeo17lU7LYwWGxisRuRR"
LXD_OIDC_CLIENT_SECRET: "CNKX4UmrZKZJq5rJy5VM_JfcNPqkws1rwWWQk_q0oyZ8gABARr19ic7xrhPssGA1"
LXD_OIDC_ISSUER: "https://dev-h6c02msuggpi6ijh.eu.auth0.com/"
LXD_OIDC_AUDIENCE: "https://dev-h6c02msuggpi6ijh.eu.auth0.com/api/v2/"
LXD_OIDC_USER: "lxd-ui-e2e-tests@example.org"
LXD_OIDC_PASSWORD: "lxd-ui-e2e-password"
LXD_OIDC_GROUPS_CLAIM: "lxd-idp-groups"
steps:
- uses: actions/checkout@v6
- name: Install Dotrun
run: |
sudo pip3 install dotrun
- name: Install LXD-UI dependencies
run: |
set -x
sudo chmod 0777 ../lxd-ui
dotrun install
- name: OVN dependencies
run: |
sudo snap refresh snapd --channel latest/beta || sudo snap install snapd --channel latest/beta
sudo snap refresh core26 --channel latest/edge || sudo snap install core26 --channel latest/edge
- name: Run LXD-UI
env:
ENVIRONMENT: devel
PORT: 8407
LXD_UI_BACKEND_IP: 172.17.0.1
VITE_PORT: 3000
run: |
dotrun &
curl --head --fail --retry-delay 2 --retry 100 --retry-connrefused --insecure https://localhost:8407
- name: Setup Ceph
if: ${{ matrix.lxd_channel != '5.0/edge' }}
uses: canonical/lxd/.github/actions/setup-microceph@main
- name: Setup OVN
if: ${{ matrix.lxd_channel != '5.0/edge' }}
uses: canonical/lxd/.github/actions/setup-microovn@main
- name: Install LXD
uses: canonical/setup-lxd@v1
with:
channel: ${{ matrix.lxd_channel }}
group: lxd
- name: Setup LXD
shell: bash
run: |
set -x
sudo lxc config set core.https_address "[::]:8443"
sudo lxc config trust add keys/lxd-ui.crt
sudo lxc config set cluster.https_address "127.0.0.1"
- uses: actions/setup-node@v6
with:
node-version: 24
- name: Install Playwright Browsers
run: npx playwright install --with-deps ${{ matrix.browser }}
- name: Set lxd channel env variable
id: lxd-env
run: |
# need to change / to - in lxd channel string for report naming
LXD_CHANNEL=$(echo '${{ matrix.lxd_channel }}' | sed 's#/#-#g')
echo "LXD_CHANNEL=$LXD_CHANNEL" >> $GITHUB_OUTPUT
- name: Setup for tests
if: ${{ matrix.lxd_channel != '5.0/edge' }}
shell: bash
run: sudo -E ./tests/scripts/setup_test
- name: Run Playwright tests
run: npx playwright test --project ${{ matrix.browser }}:lxd-${{ steps.lxd-env.outputs.LXD_CHANNEL }}:${{ matrix.deployment }}
- name: Rename Playwright report
if: always()
run: mv blob-report/report.zip blob-report/${{ matrix.browser }}-lxd-${{ steps.lxd-env.outputs.LXD_CHANNEL }}-${{ matrix.deployment }}-report.zip
- name: Upload ${{ matrix.browser }}-lxd-${{ steps.lxd-env.outputs.LXD_CHANNEL }}-${{ matrix.deployment }} blob reports to be merged
if: always()
uses: actions/upload-artifact@v7
with:
name: blob-report-${{ matrix.browser }}-lxd-${{ steps.lxd-env.outputs.LXD_CHANNEL }}-${{ matrix.deployment }}
path: blob-report
retention-days: 1
merge-e2e-reports:
if: always()
needs: [browser-e2e-test]
env:
HTML_REPORT_URL_PATH: reports/pr-${{ github.event.number }}/${{ github.run_id }}/${{ github.run_attempt }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
- name: Download blob reports from GitHub Actions Artifacts
uses: actions/download-artifact@v8
with:
path: blob-reports
pattern: blob-report-*
merge-multiple: true
# NOTE: there is no need to install playwright dependencies since we only need to merge reports here
- name: Merge into HTML Report
run: npx playwright merge-reports --config=merge.playwright.config.ts ./blob-reports
- uses: actions/upload-artifact@v7
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 14
js-tests:
name: js-tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install Dotrun
run: |
sudo pip3 install dotrun
- name: Install LXD-UI dependencies
run: |
set -x
sudo chmod 0777 ../lxd-ui
dotrun install
- name: Run Javascript tests
run: dotrun test-js