-
-
Notifications
You must be signed in to change notification settings - Fork 76
124 lines (117 loc) · 3.25 KB
/
dockerimage.yml
File metadata and controls
124 lines (117 loc) · 3.25 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
name: Docker Image CI
on:
push:
pull_request:
jobs:
read-only:
runs-on: ubuntu-24.04
env:
# Use short project name, otherwise inspect output is messy
COMPOSE_PROJECT_NAME: wl
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Test content
run: ./test-content
- name: Generate configuration
run: ./test-generate 8080 http saml
- 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 saml
- name: Run commands
run: ./test-commands
- name: Display logs
run: ./test-logs
if: always()
- name: Shutdown service
run: ./test-stop
read-write:
runs-on: ubuntu-24.04
env:
# Use short project name, otherwise inspect output is messy
COMPOSE_PROJECT_NAME: wl
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- 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 read-write
- name: Run commands
run: ./test-commands
- name: Display logs
run: ./test-logs
if: always()
- name: Shutdown service
run: ./test-stop
anubis:
runs-on: ubuntu-24.04
env:
# Use short project name, otherwise inspect output is messy
COMPOSE_PROJECT_NAME: wl
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Generate configuration
run: ./test-generate 8080 http anubis
- 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 read-write
- name: Run commands
run: ./test-commands
- name: Display logs
run: ./test-logs
if: always()
- name: Shutdown service
run: ./test-stop
permissions:
contents: read