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