-
Notifications
You must be signed in to change notification settings - Fork 139
134 lines (114 loc) · 3.56 KB
/
ca-tests2.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
name: CA Tests 2
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-profile-caDirUserCert-test:
name: CA with caDirUserCert profile
needs: [init, build]
uses: ./.github/workflows/ca-profile-caDirUserCert-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-secure-ds-test:
name: CA with secure DS
needs: [init, build]
uses: ./.github/workflows/ca-secure-ds-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-crl-test:
name: CA CRL database
needs: [init, build]
uses: ./.github/workflows/ca-crl-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-publishing-ca-cert-test:
name: CA with CA cert publishing
needs: [init, build]
uses: ./.github/workflows/ca-publishing-ca-cert-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-publishing-user-cert-test:
name: CA with user cert publishing
needs: [init, build]
uses: ./.github/workflows/ca-publishing-user-cert-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-publishing-crl-file-test:
name: CA with file-based CRL publishing
needs: [init, build]
uses: ./.github/workflows/ca-publishing-crl-file-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-publishing-crl-ldap-test:
name: CA with LDAP-based CRL publishing
needs: [init, build]
uses: ./.github/workflows/ca-publishing-crl-ldap-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-notification-request-test:
name: CA with request notification
needs: [init, build]
uses: ./.github/workflows/ca-notification-request-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-lightweight-test:
name: Lightweight CA
needs: [init, build]
uses: ./.github/workflows/ca-lightweight-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-lightweight-hsm-test:
name: Lightweight CA with HSM
needs: [init, build]
uses: ./.github/workflows/ca-lightweight-hsm-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
subca-basic-test:
name: Basic Sub-CA
needs: [init, build]
uses: ./.github/workflows/subca-basic-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
subca-cmc-test:
name: Sub-CA with CMC
needs: [init, build]
uses: ./.github/workflows/subca-cmc-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
subca-external-test:
name: Sub-CA with external cert
needs: [init, build]
uses: ./.github/workflows/subca-external-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
subca-hsm-test:
name: Sub-CA with HSM
needs: [init, build]
uses: ./.github/workflows/subca-hsm-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
subca-clone-test:
name: Sub-CA clone
needs: [init, build]
uses: ./.github/workflows/subca-clone-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
subca-clone-heml-test:
name: Sub-CA clone with HSM
needs: [init, build]
uses: ./.github/workflows/subca-clone-hsm-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
scep-test:
name: SCEP responder
needs: [init, build]
uses: ./.github/workflows/scep-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}