-
Notifications
You must be signed in to change notification settings - Fork 67
131 lines (114 loc) · 4.64 KB
/
Copy pathe2e.yml
File metadata and controls
131 lines (114 loc) · 4.64 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
name: E2E (Admin UI)
on:
push:
branches: [develop]
pull_request:
branches: [develop]
# Heavy (pilot init clones the framework); allow manual runs too.
workflow_dispatch:
jobs:
e2e:
runs-on: ubuntu-24.04
timeout-minutes: 30
name: e2e (${{ matrix.variant }})
strategy:
# Variants run as independent jobs in parallel, so adding one doesn't add
# wall-clock time. Don't cancel the others if one fails.
fail-fast: false
matrix:
include:
# Dev bench on the rootless, per-user MariaDB server the wizard
# provisions from scratch.
- variant: mariadb
db_type: mariadb
# PostgreSQL bench on the rootless, per-user PostgreSQL server the
# wizard provisions from scratch.
- variant: postgres
db_type: postgres
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.14"
- uses: actions/setup-node@v4
with:
node-version: "24"
- name: Install common system dependencies
run: |
# Runners preconfigure Microsoft apt repos that intermittently 403;
# they aren't needed here and otherwise fail the whole apt-get update.
sudo rm -f /etc/apt/sources.list.d/microsoft*.list /etc/apt/sources.list.d/azure*.list
sudo apt-get update -y
sudo apt-get install -y redis-server git nginx openssl
sudo systemctl start redis-server
- name: Install MariaDB
if: matrix.db_type == 'mariadb'
env:
MARIADB_REPO_SETUP_URL: https://r.mariadb.com/downloads/mariadb_repo_setup
MARIADB_VERSION: "11.8"
run: |
curl -LsSf "$MARIADB_REPO_SETUP_URL" -o /tmp/mariadb_repo_setup
sudo bash /tmp/mariadb_repo_setup \
--mariadb-server-version="mariadb-$MARIADB_VERSION"
sudo apt-get update -y
sudo apt-get install -y mariadb-server mariadb-client libmariadb-dev
mariadbd --version
# bench runs its own rootless, per-user MariaDB server (see
# MariaDBManager) — disable the system service install.sh would
# also disable, so it doesn't hold the port the wizard provisions
# a fresh server on.
sudo systemctl disable --now mariadb
- name: Install PostgreSQL
if: matrix.db_type == 'postgres'
run: |
sudo apt-get install -y postgresql postgresql-client libpq-dev libmariadb-dev
# Same as MariaDB above: bench provisions its own rootless server.
sudo systemctl disable --now postgresql
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Install yarn, Pilot and e2e deps
run: |
npm install -g yarn
pip install -e ".[test,admin,e2e]"
- name: Cache admin frontend node_modules
uses: actions/cache@v4
with:
path: admin/frontend/dashboard/node_modules
key: admin-npm-${{ runner.os }}-${{ hashFiles('admin/frontend/dashboard/package-lock.json') }}
- name: Install admin frontend deps
# The harness builds the admin UI from source (E2E_BUILD_ADMIN below)
# around the bench lifecycle, so it just needs node_modules.
working-directory: admin/frontend/dashboard
run: npm ci
- name: Cache Playwright browser
uses: actions/cache@v4
with:
path: ~/.cache/ms-playwright
key: playwright-${{ runner.os }}-${{ hashFiles('pyproject.toml', 'admin/frontend/dashboard/package-lock.json') }}
- name: Install Playwright browser
run: playwright install --with-deps chromium
- name: Install dashboard Playwright browser
working-directory: admin/frontend/dashboard
run: npx playwright install chromium
- name: Run e2e tests
working-directory: tests/e2e
# PILOT_BIN is intentionally unset so the harness uses the repo launcher
# (<repo>/bin/pilot), which writes to <repo>/benches where the harness reads.
run: pytest -v -s --durations=10
env:
E2E_MARIADB_PASSWORD: admin
E2E_POSTGRES_PASSWORD: admin
# CI validates this branch's frontend, so build the admin UI from source.
E2E_BUILD_ADMIN: "1"
E2E_DB_TYPE: ${{ matrix.db_type }}
- name: Upload Playwright traces
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
with:
name: e2e-traces-${{ matrix.variant }}
path: |
tests/e2e/test-results
admin/frontend/dashboard/test-results
retention-days: 7