forked from learningequality/studio
-
Notifications
You must be signed in to change notification settings - Fork 0
233 lines (230 loc) · 7.92 KB
/
Copy pathdeploytest.yml
File metadata and controls
233 lines (230 loc) · 7.92 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: Build and deploy tests
on:
push:
branches:
- unstable
- hotfixes
- master
pull_request:
permissions:
contents: read
actions: read
jobs:
pre_job:
name: Path match check
runs-on: ubuntu-latest
# Map a step output to a job output
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@master
with:
github_token: ${{ github.token }}
paths: '["**.py", "requirements.txt", ".github/workflows/deploytest.yml", "**.vue", "**.js", "pnpm-lock.yaml", "package.json"]'
build_assets:
name: Build frontend assets
needs: pre_job
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Use pnpm
uses: pnpm/action-setup@v6.0.9
- name: Use Node.js
uses: actions/setup-node@v7
with:
node-version: '20.x'
cache: 'pnpm'
- name: Install dependencies
run: |
pnpm install --frozen-lockfile
pnpm rebuild node-sass
- name: Build frontend
run: pnpm run build
- name: Upload frontend bundle
uses: actions/upload-artifact@v7
with:
name: studio-frontend-bundle
path: |
contentcuration/contentcuration/static/studio/
contentcuration/build/webpack-stats.json
if-no-files-found: error
retention-days: 1
make_messages:
name: Build all message files
needs: pre_job
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
python-version: '3.10'
activate-environment: "true"
enable-cache: "true"
- name: Install python dependencies with uv
run: |
# Use uv to install dependencies directly from requirements files
uv pip sync requirements.txt
- name: Use pnpm
uses: pnpm/action-setup@v6.0.9
- name: Use Node.js
uses: actions/setup-node@v7
with:
node-version: '20.x'
cache: 'pnpm'
- name: Install node dependencies
run: |
pnpm install --frozen-lockfile
pnpm rebuild node-sass
- name: Install gettext
run: |
sudo apt-get update -y
sudo apt-get install -y gettext
- name: Test Django makemessages
run: python contentcuration/manage.py makemessages --all
browser_smoke_test:
name: Browser smoke test
needs: [pre_job, build_assets]
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
runs-on: ubuntu-latest
timeout-minutes: 10
services:
postgres:
image: postgres:16
env:
POSTGRES_USER: learningequality
POSTGRES_PASSWORD: kolibri
POSTGRES_DB: kolibri-studio
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
redis:
image: redis:6.0.9
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
env:
DJANGO_SETTINGS_MODULE: contentcuration.settings
DATA_DB_HOST: localhost
AWS_S3_ENDPOINT_URL: http://localhost:9000
AWS_BUCKET_NAME: content
CELERY_BROKER_ENDPOINT: localhost
CELERY_REDIS_DB: "0"
CELERY_REDIS_PASSWORD: ""
# generate_storage_url() only handles k8s / docker-compose / unset — an
# unrecognized value leaves the URL unbound (500). MinIO runs on :9000
# here, which is exactly the docker-compose path.
RUN_MODE: docker-compose
SMOKE_EMAIL: smokeadmin@example.com
SMOKE_PASSWORD: smokepass1234
steps:
- uses: actions/checkout@v7
- name: Set up MinIO
run: |
docker run -d -p 9000:9000 --name minio \
-e "MINIO_ROOT_USER=development" \
-e "MINIO_ROOT_PASSWORD=development" \
-e "MINIO_DEFAULT_BUCKETS=content:public" \
bitnamilegacy/minio:2024.5.28
- name: Install gettext (for compilemessages)
run: |
sudo apt-get update -y
sudo apt-get install -y gettext
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
python-version: '3.10'
activate-environment: "true"
enable-cache: "true"
- name: Install python dependencies
run: |
uv pip sync requirements.txt
# WhiteNoise lets gunicorn serve /static/ without nginx (see
# integration_testing/smoke_wsgi.py). Smoke-test-only, so not in
# requirements.txt.
uv pip install "whitenoise<7"
- name: Download frontend bundle
uses: actions/download-artifact@v8
with:
name: studio-frontend-bundle
# upload-artifact strips the least-common-ancestor of the uploaded
# paths (here contentcuration/), so extract back under it: the bundle
# must land at contentcuration/contentcuration/static/studio/ and the
# stats file at contentcuration/build/webpack-stats.json (STATS_FILE).
path: contentcuration
- name: Cache Playwright browsers
uses: actions/cache@v6
with:
path: ~/.cache/ms-playwright
key: playwright-chromium-${{ runner.os }}-v1
- name: Install Chromium and system deps
run: uvx --from "playwright<2" playwright install --with-deps chromium
- name: Prepare database
run: |
python contentcuration/manage.py migrate --noinput
python contentcuration/manage.py loadconstants
- name: Create smoke test user
shell: python
run: |
import os
import sys
# contentcuration package lives one level down; put it on sys.path
# so django.setup() can import contentcuration.settings.
sys.path.insert(0, "contentcuration")
import django
django.setup()
from django.contrib.auth import get_user_model
# Studio's custom User model: create_superuser(email, first_name, last_name, password).
# is_active defaults to False, so we have to flip it explicitly —
# otherwise the user exists but can't log in.
u = get_user_model().objects.create_superuser(
os.environ["SMOKE_EMAIL"],
"Smoke",
"Admin",
password=os.environ["SMOKE_PASSWORD"],
)
u.is_active = True
u.save()
- name: Prepare static and translations
run: |
python contentcuration/manage.py collectstatic --noinput
cd contentcuration && python manage.py compilemessages
- name: Start gunicorn (WhiteNoise serves /static/, no nginx)
run: |
nohup gunicorn integration_testing.smoke_wsgi:application \
--pythonpath . \
--timeout=120 --workers=1 --threads=1 \
--bind=0.0.0.0:8080 --log-level=info \
> "${{ runner.temp }}/gunicorn.log" 2>&1 &
echo "gunicorn started in background"
- name: Run browser smoke test
# SCREENSHOT_DIR uses the runner context, which is only available in a
# step env — not the job-level env.
env:
SCREENSHOT_DIR: ${{ runner.temp }}/smoke_test_screenshots
run: uv run --script integration_testing/smoke_test.py
- name: Upload screenshots
if: always()
uses: actions/upload-artifact@v7
with:
name: smoke_test_screenshots
path: ${{ runner.temp }}/smoke_test_screenshots
if-no-files-found: ignore
- name: Upload gunicorn log on failure
if: failure()
uses: actions/upload-artifact@v7
with:
name: smoke_test_gunicorn_log
path: ${{ runner.temp }}/gunicorn.log
if-no-files-found: ignore