-
-
Notifications
You must be signed in to change notification settings - Fork 11
396 lines (365 loc) · 14.4 KB
/
posmulten.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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
name: Run tests for posmulten
on:
push:
jobs:
compilation_and_unit_tests:
runs-on: ubuntu-latest
name: "Compilation and unit tests"
steps:
- name: Git checkout
uses: actions/checkout@v2
# Install JDKs and maven toolchain
- uses: actions/setup-java@v3
name: Set up JDK 11
id: setupJava11
with:
distribution: 'zulu' # See 'Supported distributions' for available options
java-version: '11'
- name: Set up JDK 1.8
id: setupJava8
uses: actions/setup-java@v1
with:
java-version: 1.8
- uses: cactuslab/maven-toolchains-xml-action@v1
with:
toolchains: |
[
{"jdkVersion": "8", "jdkHome": "${{steps.setupJava8.outputs.path}}"},
{"jdkVersion": "11", "jdkHome": "${{steps.setupJava11.outputs.path}}"}
]
- name: Build with Maven
run: ./mvnw clean install -DskipTests --quiet && ./mvnw test
# Running tests for a different locale https://github.com/starnowski/posmulten/issues/270
- name: Running tests with different locale
run: |
echo "Setting locale to de_DE.UTF-8"
sudo locale-gen de_DE.UTF-8
sudo update-locale LANG=de_DE.UTF-8
echo "Printing date for test"
date
./mvnw test
env:
LANG: "de_DE.UTF-8"
compilation_and_unit_tests_java_11:
runs-on: ubuntu-latest
name: "Compilation and unit tests for java 11"
steps:
- name: Git checkout
uses: actions/checkout@v2
# Install JDKs and maven toolchain
- name: Set up JDK 1.8
id: setupJava8
uses: actions/setup-java@v1
with:
java-version: 1.8
- uses: actions/setup-java@v3
name: Set up JDK 11
id: setupJava11
with:
distribution: 'zulu' # See 'Supported distributions' for available options
java-version: '11'
- uses: cactuslab/maven-toolchains-xml-action@v1
with:
toolchains: |
[
{"jdkVersion": "8", "jdkHome": "${{steps.setupJava8.outputs.path}}"},
{"jdkVersion": "11", "jdkHome": "${{steps.setupJava11.outputs.path}}"}
]
- name: Build with Maven
run: ./mvnw clean install -DskipTests --quiet && ./mvnw -pl :configuration-yaml-jakarta-interpreter -P jdk11 test
# Running tests for a different locale https://github.com/starnowski/posmulten/issues/270
- name: Running tests with different locale
run: |
echo "Setting locale to de_DE.UTF-8"
sudo locale-gen de_DE.UTF-8
sudo update-locale LANG=de_DE.UTF-8
echo "Printing date for test"
date
./mvnw -pl :configuration-yaml-jakarta-interpreter -P jdk11 test
env:
LANG: "de_DE.UTF-8"
database_tests:
runs-on: ubuntu-latest
name: "Database creation tests for multiple postgres versions 9.6, 10, 11, 12, 13"
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Install bats
run: .travis/bats/bats-core-installation.sh "$GITHUB_WORKSPACE/.travis/bats"
- name: Run bats tests
run: export PATH="$GITHUB_WORKSPACE/.travis/bats/bats-core/bin:$PATH" && bats/run_bats_test_for_all_db_version.sh
testing_configuration_jar:
runs-on: ubuntu-latest
name: "Testing configuration jar"
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Install bats
run: .travis/bats/bats-core-installation.sh "$GITHUB_WORKSPACE/.travis/bats"
- name: Install other libs
run: sudo apt-get update && sudo apt-get -y install libxml2-utils
# Install JDKs and maven toolchain
- uses: actions/setup-java@v3
name: Set up JDK 11
id: setupJava11
with:
distribution: 'zulu' # See 'Supported distributions' for available options
java-version: '11'
- name: Set up JDK 1.8
id: setupJava8
uses: actions/setup-java@v1
with:
java-version: 1.8
- uses: cactuslab/maven-toolchains-xml-action@v1
with:
toolchains: |
[
{"jdkVersion": "8", "jdkHome": "${{steps.setupJava8.outputs.path}}"},
{"jdkVersion": "11", "jdkHome": "${{steps.setupJava11.outputs.path}}"}
]
- name: Run bats tests
run: ./mvnw -DskipTests --quiet clean install && export PATH="$GITHUB_WORKSPACE/.travis/bats/bats-core/bin:$PATH" && bats -tr bats/configuration-jar
integraion_tests:
needs: [compilation_and_unit_tests, compilation_and_unit_tests_java_11, database_tests, testing_configuration_jar]
runs-on: ubuntu-latest
name: "Integration and functional tests in postgresql-core module"
services:
postgres:
image: postgres:9.6
env:
POSTGRES_DB: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_HOST: localhost
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Git checkout
uses: actions/checkout@v2
# Install JDKs and maven toolchain
- uses: actions/setup-java@v3
name: Set up JDK 11
id: setupJava11
with:
distribution: 'zulu' # See 'Supported distributions' for available options
java-version: '11'
- name: Set up JDK 1.8
id: setupJava8
uses: actions/setup-java@v1
with:
java-version: 1.8
- uses: cactuslab/maven-toolchains-xml-action@v1
with:
toolchains: |
[
{"jdkVersion": "8", "jdkHome": "${{steps.setupJava8.outputs.path}}"},
{"jdkVersion": "11", "jdkHome": "${{steps.setupJava11.outputs.path}}"}
]
- name: Install library for postgres
run: sudo apt-get -y install libpq-dev postgresql-client
- name: Create database
run: export PGPASSWORD=postgres && psql -f 'db_scripts/prepare_postgresql-core_db.sql' -U postgres -h 127.0.0.1
- name: Run tests
run: ./mvnw -DskipTests --quiet clean install && ./mvnw -pl :postgresql-core -P !unit-tests,integration-tests test && ./mvnw -pl :postgresql-core-functional-tests,:configuration-yaml-interpreter-functional-tests,:configuration-yaml-jakarta-interpreter-functional-tests -P !unit-tests,functional-tests test
configuration_e2e_tests:
needs: [compilation_and_unit_tests, compilation_and_unit_tests_java_11, database_tests, testing_configuration_jar]
runs-on: ubuntu-latest
name: "E2E smoke tests for configuration jar"
services:
postgres:
image: postgres:9.6
env:
POSTGRES_DB: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_HOST: localhost
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Git checkout
uses: actions/checkout@v2
# Install JDKs and maven toolchain
- uses: actions/setup-java@v3
name: Set up JDK 11
id: setupJava11
with:
distribution: 'zulu' # See 'Supported distributions' for available options
java-version: '11'
- name: Set up JDK 1.8
id: setupJava8
uses: actions/setup-java@v1
with:
java-version: 1.8
- uses: cactuslab/maven-toolchains-xml-action@v1
with:
toolchains: |
[
{"jdkVersion": "8", "jdkHome": "${{steps.setupJava8.outputs.path}}"},
{"jdkVersion": "11", "jdkHome": "${{steps.setupJava11.outputs.path}}"}
]
- name: Install bats
run: .travis/bats/bats-core-installation.sh "$GITHUB_WORKSPACE/.travis/bats"
- name: Install library for postgres
run: sudo apt-get -y install libpq-dev postgresql-client
- name: Create database
run: export PGPASSWORD=postgres && psql -f 'db_scripts/prepare_postgresql-core_db.sql' -U postgres -h 127.0.0.1
- name: Run tests
run: ./mvnw -DskipTests --quiet clean install && export PATH="$GITHUB_WORKSPACE/.travis/bats/bats-core/bin:$PATH" && bats -tr bats/configuration-integration
documentation_tests:
needs: [compilation_and_unit_tests, compilation_and_unit_tests_java_11, database_tests, testing_configuration_jar]
runs-on: ubuntu-latest
name: "Tests for configuration jar documentations"
steps:
- name: Git checkout
uses: actions/checkout@v2
# Install JDKs and maven toolchain
- uses: actions/setup-java@v3
name: Set up JDK 11
id: setupJava11
with:
distribution: 'zulu' # See 'Supported distributions' for available options
java-version: '11'
- name: Set up JDK 1.8
id: setupJava8
uses: actions/setup-java@v1
with:
java-version: 1.8
- uses: cactuslab/maven-toolchains-xml-action@v1
with:
toolchains: |
[
{"jdkVersion": "8", "jdkHome": "${{steps.setupJava8.outputs.path}}"},
{"jdkVersion": "11", "jdkHome": "${{steps.setupJava11.outputs.path}}"}
]
- name: Install bats
run: .travis/bats/bats-core-installation.sh "$GITHUB_WORKSPACE/.travis/bats"
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- run: npm install
working-directory: ./configuration-parent/configuration-yaml-interpreter-readme-converter
env:
CI: true
- name: Run tests
run: ./mvnw -DskipTests --quiet clean install && export PATH="$GITHUB_WORKSPACE/.travis/bats/bats-core/bin:$PATH" && bats -tr bats/configuration-documentation
testing_swing_app:
needs: [compilation_and_unit_tests, compilation_and_unit_tests_java_11, database_tests, testing_configuration_jar]
runs-on: ubuntu-latest
name: "Testing Swing Application"
steps:
- name: Git checkout
uses: actions/checkout@v2
# Install JDKs and maven toolchain
- uses: actions/setup-java@v3
name: Set up JDK 11
id: setupJava11
with:
distribution: 'zulu' # See 'Supported distributions' for available options
java-version: '11'
- name: Set up JDK 1.8
id: setupJava8
uses: actions/setup-java@v1
with:
java-version: 1.8
- uses: cactuslab/maven-toolchains-xml-action@v1
with:
toolchains: |
[
{"jdkVersion": "8", "jdkHome": "${{steps.setupJava8.outputs.path}}"},
{"jdkVersion": "11", "jdkHome": "${{steps.setupJava11.outputs.path}}"}
]
- name: Install tightvncserver
run: sudo apt-get update && sudo apt install tightvncserver
- name: Install openbox
run: sudo apt install openbox
- name: Copy xstartup
run: mkdir $HOME/.vnc && cp ./swing/xstartup $HOME/.vnc/xstartup && chmod +x $HOME/.vnc/xstartup
- name: Setting password for tightvncserver
run: ./swing/setpassword.sh
- name: Run Swing tests
id: swingTest1
continue-on-error: true
run: ./mvnw -DskipTests --quiet clean install && ./swing/execute-on-vnc.sh ./mvnw -pl :openwebstart '-DxvfbRunningTests=true' -P !unit-tests,swing-tests test
#https://www.thisdot.co/blog/how-to-retry-failed-steps-in-github-action-workflows/
# https://stackoverflow.com/questions/54443705/change-default-screen-resolution-on-headless-ubuntu
- name: Run Swing tests (Second time)
id: swingTest2
if: steps.swingTest1.outcome == 'failure'
run: ./mvnw -DskipTests --quiet clean install && ./swing/execute-on-vnc.sh ./mvnw -pl :openwebstart '-DxvfbRunningTests=true' -P !unit-tests,swing-tests test
compatibility_tests:
needs: [configuration_e2e_tests, integraion_tests, documentation_tests, testing_swing_app]
runs-on: ubuntu-latest
name: "Running integration and functional tests that checks if code is compatible with postgres versions 10, 11, 12, 13"
steps:
- name: Git checkout
uses: actions/checkout@v2
# Install JDKs and maven toolchain
- uses: actions/setup-java@v3
name: Set up JDK 11
id: setupJava11
with:
distribution: 'zulu' # See 'Supported distributions' for available options
java-version: '11'
- name: Set up JDK 1.8
id: setupJava8
uses: actions/setup-java@v1
with:
java-version: 1.8
- uses: cactuslab/maven-toolchains-xml-action@v1
with:
toolchains: |
[
{"jdkVersion": "8", "jdkHome": "${{steps.setupJava8.outputs.path}}"},
{"jdkVersion": "11", "jdkHome": "${{steps.setupJava11.outputs.path}}"}
]
- name: Build with Maven
run: bats/run_integration_test_for_all_db_version.sh
publish:
name: "Publish to the Maven Central Repository"
needs: [compatibility_tests]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
if: startsWith(github.ref, 'refs/tags/v')
# Install JDKs and maven toolchain
- uses: actions/setup-java@v3
if: startsWith(github.ref, 'refs/tags/v')
name: Set up JDK 11
id: setupJava11
with:
distribution: 'zulu' # See 'Supported distributions' for available options
java-version: '11'
- name: Set up JDK 1.8
if: startsWith(github.ref, 'refs/tags/v')
id: setupJava8
uses: actions/setup-java@v1
with:
java-version: 1.8
- uses: cactuslab/maven-toolchains-xml-action@v1
if: startsWith(github.ref, 'refs/tags/v')
with:
toolchains: |
[
{"jdkVersion": "8", "jdkHome": "${{steps.setupJava8.outputs.path}}"},
{"jdkVersion": "11", "jdkHome": "${{steps.setupJava11.outputs.path}}"}
]
- name: Publish to the Maven Central Repository
if: startsWith(github.ref, 'refs/tags/v')
run: deploy/release.sh
env:
MAVEN_USERNAME: '${{ secrets.POSMULTEN_MAVEN_USERNAME }}'
MAVEN_PASSWORD: '${{ secrets.POSMULTEN_MAVEN_PASSWORD }}'
ENCRYPTION_PASSWORD: '${{ secrets.POSMULTEN_ENCRYPTION_PASSWORD }}'
GPG_KEYNAME: '${{ secrets.POSMULTEN_GPG_KEYNAME }}'
GPG_PASSPHRASE: '${{ secrets.POSMULTEN_GPG_PASSPHRASE }}'