-
Notifications
You must be signed in to change notification settings - Fork 139
71 lines (60 loc) · 1.83 KB
/
server-tests.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
name: Server Tests
on: [push, pull_request]
jobs:
init:
name: Initialization
uses: ./.github/workflows/init.yml
secrets: inherit
build:
name: Waiting for build
needs: init
uses: ./.github/workflows/wait-for-build.yml
secrets: inherit
server-basic-test:
name: Basic server
needs: [init, build]
uses: ./.github/workflows/server-basic-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
server-https-pem-test:
name: HTTPS connector with PEM files
needs: [init, build]
uses: ./.github/workflows/server-https-pem-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
server-https-jks-test:
name: HTTPS connector with JKS file
needs: [init, build]
uses: ./.github/workflows/server-https-jks-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
server-https-pkcs12-test:
name: "HTTPS connector with PKCS #12 file"
needs: [init, build]
uses: ./.github/workflows/server-https-pkcs12-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
server-https-nss-test:
name: HTTPS connector with NSS database
needs: [init, build]
uses: ./.github/workflows/server-https-nss-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
server-backup-test:
name: Server backup
needs: [init, build]
uses: ./.github/workflows/server-backup-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
server-upgrade-test:
name: Server upgrade
needs: [init, build]
uses: ./.github/workflows/server-upgrade-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
server-container-test:
name: Server container
needs: [init, build]
uses: ./.github/workflows/server-container-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}