-
Notifications
You must be signed in to change notification settings - Fork 137
79 lines (63 loc) · 1.83 KB
/
kra-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
name: KRA Tests
on: [push, pull_request]
jobs:
build:
name: Waiting for build
uses: ./.github/workflows/wait-for-build.yml
secrets: inherit
kra-basic-test:
name: Basic KRA
needs: build
uses: ./.github/workflows/kra-basic-test.yml
kra-oaep-test:
name: KRA with RSA OAEP padding
needs: build
uses: ./.github/workflows/kra-oaep-test.yml
kra-ecc-test:
name: KRA with ECC
needs: build
uses: ./.github/workflows/kra-ecc-test.yml
kra-separate-test:
name: KRA on separate instance
needs: build
uses: ./.github/workflows/kra-separate-test.yml
kra-external-certs-test:
name: KRA with external certs
needs: build
uses: ./.github/workflows/kra-external-certs-test.yml
kra-existing-ds-test:
name: KRA with existing DS database
needs: build
uses: ./.github/workflows/kra-existing-ds-test.yml
kra-cmc-test:
name: KRA with CMC
needs: build
uses: ./.github/workflows/kra-cmc-test.yml
kra-clone-test:
name: KRA clone
needs: build
uses: ./.github/workflows/kra-clone-test.yml
kra-clone-hsm-test:
name: KRA clone with HSM
needs: build
uses: ./.github/workflows/kra-clone-hsm-test.yml
kra-clone-shared-ds-test:
name: KRA clone with shared DS
needs: build
uses: ./.github/workflows/kra-clone-shared-ds-test.yml
kra-clone-replicated-ds-test:
name: KRA clone with replicated DS
needs: build
uses: ./.github/workflows/kra-clone-replicated-ds-test.yml
kra-standalone-test:
name: Standalone KRA
needs: build
uses: ./.github/workflows/kra-standalone-test.yml
kra-sequential-test:
name: KRA with sequential serial numbers
needs: build
uses: ./.github/workflows/kra-sequential-test.yml
kra-hsm-test:
name: KRA with HSM
needs: build
uses: ./.github/workflows/kra-hsm-test.yml