-
-
Notifications
You must be signed in to change notification settings - Fork 64
82 lines (77 loc) · 2.15 KB
/
dockerimage.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
name: Docker Image CI
on: [push, pull_request]
jobs:
read-only:
runs-on: ubuntu-22.04
env:
# Use short project name, otherwise inspect output is messy
COMPOSE_PROJECT_NAME: wl
TEST_EXTRA_ENV: 'WEBLATE_SAML_IDP_URL: https://example.com/idp'
steps:
- uses: actions/checkout@v4
- name: Generate configuration
run: ./test-generate 8080 http
- name: Startup container
run: ./test-boot
- name: List Python packages
run: ./test-pip
- name: Inspect container
run: ./test-inspect
- name: Check service is running
run: ./test-online
- name: Check service health status
run: ./test-health
- name: Run Django Checks
run: ./test-checks
- name: Verify supervisor
run: ./test-supervisor
- name: Test admin creation
run: ./test-admin
- name: Verify SAML certificate
run: ./test-saml
- name: Run commands
run: ./test-commands
- name: Run tests
run: ./test-tests
- name: Display logs
run: ./test-logs
if: always()
- name: Shutdown service
run: ./test-stop
read-write:
runs-on: ubuntu-22.04
env:
# Use short project name, otherwise inspect output is messy
COMPOSE_PROJECT_NAME: wl
TEST_EXTRA_ENV: 'WEBLATE_SAML_IDP_URL: https://example.com/idp'
steps:
- uses: actions/checkout@v4
- name: Generate configuration
run: ./test-generate 8080 http read-write
- name: Startup container
run: ./test-boot
- name: List Python packages
run: ./test-pip
- name: Inspect container
run: ./test-inspect
- name: Check service is running
run: ./test-online
- name: Check service health status
run: ./test-health
- name: Run Django Checks
run: ./test-checks
- name: Verify supervisor
run: ./test-supervisor
- name: Test admin creation
run: ./test-admin
- name: Verify SAML certificate
run: ./test-saml
- name: Run commands
run: ./test-commands
- name: Run tests
run: ./test-tests
- name: Display logs
run: ./test-logs
if: always()
- name: Shutdown service
run: ./test-stop