-
Notifications
You must be signed in to change notification settings - Fork 139
141 lines (120 loc) · 3.58 KB
/
ca-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
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
name: CA 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
ca-basic-test:
name: Basic CA
needs: [init, build]
uses: ./.github/workflows/ca-basic-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-ecc-test:
name: CA with ECC
needs: [init, build]
uses: ./.github/workflows/ca-ecc-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-rsa-test:
name: CA with RSA
needs: [init, build]
uses: ./.github/workflows/ca-rsa-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-rsa-pss-test:
name: CA with RSA/PSS
needs: [init, build]
uses: ./.github/workflows/ca-rsa-pss-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-existing-certs-test:
name: CA with existing certs
needs: [init, build]
uses: ./.github/workflows/ca-existing-certs-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-existing-nssdb-test:
name: CA with existing NSS database
needs: [init, build]
uses: ./.github/workflows/ca-existing-nssdb-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-existing-hsm-test:
name: CA with existing HSM
needs: [init, build]
uses: ./.github/workflows/ca-existing-hsm-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-existing-ds-test:
name: CA with existing DS
needs: [init, build]
uses: ./.github/workflows/ca-existing-ds-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-cmc-shared-token-test:
name: CA with CMC shared token
needs: [init, build]
uses: ./.github/workflows/ca-cmc-shared-token-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-hsm-test:
name: CA with HSM
needs: [init, build]
uses: ./.github/workflows/ca-hsm-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-nuxwdog-test:
name: CA with Nuxwdog
needs: [init, build]
uses: ./.github/workflows/ca-nuxwdog-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-ds-connection-test:
name: CA connection with DS
needs: [init, build]
uses: ./.github/workflows/ca-ds-connection-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-rsnv1-test:
name: CA with RSNv1
needs: [init, build]
uses: ./.github/workflows/ca-rsnv1-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-sequential-test:
name: CA with Sequential Serial Numbers
needs: [init, build]
uses: ./.github/workflows/ca-sequential-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-pruning-test:
name: CA database pruning
needs: [init, build]
uses: ./.github/workflows/ca-pruning-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-admin-user-test:
name: CA admin user
needs: [init, build]
uses: ./.github/workflows/ca-admin-user-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-non-default-user-test:
name: CA with non-default user
needs: [init, build]
uses: ./.github/workflows/ca-non-default-user-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-container-test:
name: CA container
needs: [init, build]
uses: ./.github/workflows/ca-container-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}