-
Notifications
You must be signed in to change notification settings - Fork 18
237 lines (213 loc) · 6.73 KB
/
docker-test.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
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
234
235
236
237
name: "Docker-Docs CI"
run-name: "CI tests Docker-Docs"
on:
pull_request:
types: [opened, reopened, synchronize]
paths-ignore:
- '.github/**'
- 'tests/**'
- '**/README.md'
jobs:
start_test_files:
name: ${{ matrix.name }}
runs-on: ubuntu-latest
if: ${{ github.base_ref == 'master' }}
strategy:
fail-fast: false
matrix:
include:
- compose_file:
"postgres.yml
rabbitmq.yml
services.yml"
variables: "POSTGRES_VERSION=12"
name: "Test with PostgreSQL 12 and Rabbitmq"
- compose_file:
"postgres.yml
rabbitmq.yml
services.yml"
variables: "POSTGRES_VERSION=13"
name: "Test with PostgreSQL 13 and Rabbitmq"
- compose_file:
"postgres.yml
rabbitmq.yml
services.yml"
variables: "POSTGRES_VERSION=14"
name: "Test with PostgreSQL 14 and Rabbitmq"
- compose_file:
"postgres.yml
rabbitmq.yml
services.yml"
variables: "POSTGRES_VERSION=15"
name: "Test with PostgreSQL 15 and Rabbitmq"
- compose_file:
"postgres.yml
rabbitmq.yml
services.yml"
variables: "POSTGRES_VERSION=16"
name: "Test with PostgreSQL 16 and Rabbitmq"
- compose_file:
"postgres.yml
activemq.yml
services.yml"
variables: "
ACTIVEMQ_VERSION=5.14.3
AMQP_TYPE=activemq
AMQP_HOST=activemq"
name: "Test with Activemq 5.14.3 and PostgreSQL"
- compose_file:
"postgres.yml
activemq.yml
services.yml"
variables: "
ACTIVEMQ_VERSION=latest
AMQP_TYPE=activemq
AMQP_HOST=activemq"
name: "Test with Activemq latest and PostgreSQL"
- compose_file:
"postgres.yml
rabbitmq.yml
services.yml"
variables: "RABBITMQ_VERSION=3"
name: "Test with Rabbitmq 3 and PostgreSQL"
- compose_file:
"mysql.yml
rabbitmq.yml
services.yml"
variables: "
MYSQL_VERSION=5
DB_TYPE=mysql
DB_HOST=mysql
DB_PORT=3306"
name: "Test with MySQL 5 and Rabbitmq"
- compose_file:
"mysql.yml
rabbitmq.yml
services.yml"
variables: "
MYSQL_VERSION=5.7
DB_TYPE=mysql
DB_HOST=mysql
DB_PORT=3306"
name: "Test with MySQL 5.7 and Rabbitmq"
- compose_file:
"mysql.yml
rabbitmq.yml
services.yml"
variables: "
MYSQL_VERSION=8
DB_TYPE=mysql
DB_HOST=mysql
DB_PORT=3306"
name: "Test with MySQL 8 and Rabbitmq"
- compose_file:
"mysql.yml
activemq.yml
services.yml"
variables: "
ACTIVEMQ_VERSION=5.14.3
DB_TYPE=mysql
DB_HOST=mysql
DB_PORT=3306
AMQP_TYPE=activemq
AMQP_HOST=activemq"
name: "Test with Activemq 5.14.3 and MySQL"
- compose_file:
"mysql.yml
activemq.yml
services.yml"
variables: "
ACTIVEMQ_VERSION=latest
DB_TYPE=mysql
DB_HOST=mysql
DB_PORT=3306
AMQP_TYPE=activemq
AMQP_HOST=activemq"
name: "Test with Activemq latest and MySQL"
- compose_file:
"mysql.yml
rabbitmq.yml
services.yml"
variables: "
RABBITMQ_VERSION=3
DB_TYPE=mysql
DB_HOST=mysql
DB_PORT=3306"
name: "Test with Rabbitmq 3 and MySQL"
- compose_file:
"mariadb.yml
rabbitmq.yml
services.yml"
variables: "
MARIADB_VERSION=10.5
DB_TYPE=mariadb
DB_HOST=mariadb
DB_PORT=3306"
name: "Test with MariaDB 10.5 and Rabbitmq"
- compose_file:
"mariadb.yml
rabbitmq.yml
services.yml"
variables: "
MARIADB_VERSION=10.6
DB_TYPE=mariadb
DB_HOST=mariadb
DB_PORT=3306"
name: "Test with MariaDB 10.6 and Rabbitmq"
- compose_file:
"mariadb.yml
rabbitmq.yml
services.yml"
variables: "
MARIADB_VERSION=10.8
DB_TYPE=mariadb
DB_HOST=mariadb
DB_PORT=3306"
name: "Test with MariaDB 10.8 and Rabbitmq"
- compose_file:
"mariadb.yml
activemq.yml
services.yml"
variables: "
ACTIVEMQ_VERSION=5.14.3
DB_TYPE=mariadb
DB_HOST=mariadb
DB_PORT=3306
AMQP_TYPE=activemq
AMQP_HOST=activemq"
name: "Test with Activemq 5.14.3 and MariaDB"
- compose_file:
"mariadb.yml
activemq.yml
services.yml"
variables: "
ACTIVEMQ_VERSION=latest
DB_TYPE=mariadb
DB_HOST=mariadb
DB_PORT=3306
AMQP_TYPE=activemq
AMQP_HOST=activemq"
name: "Test with Activemq latest and MariaDB"
- compose_file:
"mariadb.yml
rabbitmq.yml
services.yml"
variables: "
RABBITMQ_VERSION=3
DB_TYPE=mariadb
DB_HOST=mariadb
DB_PORT=3306"
name: "Test with Rabbitmq 3 and MariaDB"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: "${{ matrix.name }}"
run: |
export PRODUCT_EDITION=""
export RELEASE_VERSION=""
for v in ${{ matrix.variables }}; do
export $v
done
NEW_ARR+=(${{ matrix.compose_file }})
export config=${NEW_ARR[@]}
./tests/test.sh