forked from dracoventions/TWCManager
-
Notifications
You must be signed in to change notification settings - Fork 55
173 lines (132 loc) · 4.22 KB
/
test_suite.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
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
name: "Deploy TWCManager Test Suite"
on:
push:
jobs:
twcmanager-python3_6_direct:
name: Python 3.6 - Run Direct
runs-on: [ "self-hosted", "build_host" ]
container:
image: twcmanager/twcmanager-testsuite:py3.6.13
options: --user root
steps:
- name: "Checkout Repository"
uses: actions/checkout@v3
- name: "Upgrade setuptools"
run: pip3 install --upgrade setuptools
- name: "Build Project"
run: CI=1 make webbuild
- name: "Deploy Test Configuration"
run: make testconfig
- name: "Install Legacy Web Files"
run: make webfiles
- name: "Run Test Suite"
run: make test_direct
- name: "Upload any debug files collected"
if: always()
run: make upload
twcmanager-python3_6_service:
name: Python 3.6 - Run as a Service
runs-on: [ "self-hosted", "build_host" ]
container:
image: twcmanager/twcmanager-testsuite:py3.6.13
options: --user root
steps:
- name: "Checkout Repository"
uses: actions/checkout@v3
- name: "Upgrade setuptools"
run: pip3 install --upgrade setuptools
- name: "Build Project"
run: CI=1 make webbuild
- name: "Deploy Test Configuration"
run: make testconfig
- name: "Install Legacy Web Files"
run: make webfiles
- name: "Run Test Suite"
run: make test_service_nofail
- name: "Upload any debug files collected"
if: always()
run: make upload
twcmanager-python3_7_direct:
name: Python 3.7 - Run Direct
runs-on: [ "self-hosted", "build_host" ]
container:
image: twcmanager/twcmanager-testsuite:py3.7.10
options: --user root
steps:
- name: "Checkout Repository"
uses: actions/checkout@v3
- name: "Build Project"
run: CI=1 make webbuild
- name: "Deploy Test Configuration"
run: make testconfig
- name: "Install Legacy Web Files"
run: make webfiles
- name: "Run Test Suite"
run: make test_direct
- name: "Upload any debug files collected"
if: always()
run: make upload
twcmanager-python3_7_service:
name: Python 3.7 - Run as a Service
runs-on: [ "self-hosted", "build_host" ]
container:
image: twcmanager/twcmanager-testsuite:py3.7.10
options: --user root
steps:
- name: "Checkout Repository"
uses: actions/checkout@v3
- name: "Build Project"
run: CI=1 make webbuild
- name: "Deploy Test Configuration"
run: make testconfig
- name: "Install Legacy Web Files"
run: make webfiles
- name: "Run Test Suite"
run: make test_service_nofail
- name: "Upload any debug files collected"
if: always()
run: make upload
twcmanager-python3_8_direct:
name: Python 3.8 - Run Direct
runs-on: [ "self-hosted", "build_host" ]
container:
image: twcmanager/twcmanager-testsuite:py3.8.12
options: --user root
steps:
- name: "Checkout Repository"
uses: actions/checkout@v3
- name: "Upgrade setuptools"
run: pip3 install --upgrade setuptools
- name: "Build Project"
run: CI=1 make webbuild
- name: "Deploy Test Configuration"
run: make testconfig
- name: "Install Legacy Web Files"
run: make webfiles
- name: "Run Test Suite"
run: make test_direct
- name: "Upload any debug files collected"
if: always()
run: make upload
twcmanager-python3_9_direct:
name: Python 3.9 - Run Direct
runs-on: [ "self-hosted", "build_host" ]
container:
image: twcmanager/twcmanager-testsuite:py3.9.10
options: --user root
steps:
- name: "Checkout Repository"
uses: actions/checkout@v3
- name: "Upgrade setuptools"
run: pip3 install --upgrade setuptools
- name: "Build Project"
run: CI=1 make webbuild
- name: "Deploy Test Configuration"
run: make testconfig
- name: "Install Legacy Web Files"
run: make webfiles
- name: "Run Test Suite"
run: make test_direct
- name: "Upload any debug files collected"
if: always()
run: make upload