-
Notifications
You must be signed in to change notification settings - Fork 139
78 lines (66 loc) · 1.9 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
name: KRA 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
kra-basic-test:
name: Basic KRA
needs: [init, build]
uses: ./.github/workflows/kra-basic-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
kra-oaep-test:
name: KRA with RSA OAEP padding
needs: [init, build]
uses: ./.github/workflows/kra-oaep-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
kra-separate-test:
name: KRA on separate instance
needs: [init, build]
uses: ./.github/workflows/kra-separate-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
kra-external-certs-test:
name: KRA with external certs
needs: [init, build]
uses: ./.github/workflows/kra-external-certs-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
kra-cmc-test:
name: KRA with CMC
needs: [init, build]
uses: ./.github/workflows/kra-cmc-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
kra-clone-test:
name: KRA clone
needs: [init, build]
uses: ./.github/workflows/kra-clone-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
kra-standalone-test:
name: Standalone KRA
needs: [init, build]
uses: ./.github/workflows/kra-standalone-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
kra-sequential-test:
name: KRA with sequential serial numbers
needs: [init, build]
uses: ./.github/workflows/kra-sequential-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
kra-hsm-test:
name: KRA with HSM
needs: [init, build]
uses: ./.github/workflows/kra-hsm-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}