-
Notifications
You must be signed in to change notification settings - Fork 138
50 lines (42 loc) · 1.23 KB
/
ca-clone-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
name: CA Clone 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-clone-test:
name: CA clone
needs: [init, build]
uses: ./.github/workflows/ca-clone-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-clone-hsm-test:
name: CA clone with HSM
needs: [init, build]
uses: ./.github/workflows/ca-clone-hsm-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-clone-secure-ds-test:
name: CA clone with secure DS
needs: [init, build]
uses: ./.github/workflows/ca-clone-secure-ds-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-clone-shared-ds-test:
name: CA clone with shared DS
needs: [init, build]
uses: ./.github/workflows/ca-clone-shared-ds-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
ca-clone-replicated-ds-test:
name: CA clone with replicated DS
needs: [init, build]
uses: ./.github/workflows/ca-clone-replicated-ds-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}