-
Notifications
You must be signed in to change notification settings - Fork 137
99 lines (79 loc) · 2.27 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
name: CA Tests
on: [push, pull_request]
jobs:
build:
name: Waiting for build
uses: ./.github/workflows/wait-for-build.yml
secrets: inherit
ca-basic-test:
name: Basic CA
needs: build
uses: ./.github/workflows/ca-basic-test.yml
ca-ecc-test:
name: CA with ECC
needs: build
uses: ./.github/workflows/ca-ecc-test.yml
ca-rsa-test:
name: CA with RSA
needs: build
uses: ./.github/workflows/ca-rsa-test.yml
ca-rsa-pss-test:
name: CA with RSA/PSS
needs: build
uses: ./.github/workflows/ca-rsa-pss-test.yml
ca-existing-certs-test:
name: CA with existing certs
needs: build
uses: ./.github/workflows/ca-existing-certs-test.yml
ca-existing-nssdb-test:
name: CA with existing NSS database
needs: build
uses: ./.github/workflows/ca-existing-nssdb-test.yml
ca-existing-hsm-test:
name: CA with existing HSM
needs: build
uses: ./.github/workflows/ca-existing-hsm-test.yml
ca-existing-ds-test:
name: CA with existing DS
needs: build
uses: ./.github/workflows/ca-existing-ds-test.yml
ca-existing-config-test:
name: CA with existing config
needs: build
uses: ./.github/workflows/ca-existing-config-test.yml
ca-cmc-shared-token-test:
name: CA with CMC shared token
needs: build
uses: ./.github/workflows/ca-cmc-shared-token-test.yml
ca-hsm-test:
name: CA with HSM
needs: build
uses: ./.github/workflows/ca-hsm-test.yml
ca-nuxwdog-test:
name: CA with Nuxwdog
needs: build
uses: ./.github/workflows/ca-nuxwdog-test.yml
ca-ds-connection-test:
name: CA connection with DS
needs: build
uses: ./.github/workflows/ca-ds-connection-test.yml
ca-rsnv1-test:
name: CA with RSNv1
needs: build
uses: ./.github/workflows/ca-rsnv1-test.yml
ca-sequential-test:
name: CA with Sequential Serial Numbers
needs: build
uses: ./.github/workflows/ca-sequential-test.yml
ca-pruning-test:
name: CA database pruning
needs: build
uses: ./.github/workflows/ca-pruning-test.yml
ca-admin-user-test:
name: CA admin user
needs: build
uses: ./.github/workflows/ca-admin-user-test.yml
ca-custom-user-test:
name: CA with custom user
needs: build
uses: ./.github/workflows/ca-custom-user-test.yml