-
Notifications
You must be signed in to change notification settings - Fork 138
44 lines (35 loc) · 1.03 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
name: CA Clone Tests
on: [push, pull_request]
jobs:
build:
name: Waiting for build
uses: ./.github/workflows/wait-for-build.yml
secrets: inherit
ca-clone-test:
name: CA clone
needs: build
uses: ./.github/workflows/ca-clone-test.yml
ca-clone-hsm-test:
name: CA clone with HSM
needs: build
uses: ./.github/workflows/ca-clone-hsm-test.yml
ca-clone-secure-ds-test:
name: CA clone with secure DS
needs: build
uses: ./.github/workflows/ca-clone-secure-ds-test.yml
ca-clone-shared-ds-test:
name: CA clone with shared DS
needs: build
uses: ./.github/workflows/ca-clone-shared-ds-test.yml
ca-clone-replicated-ds-test:
name: CA clone with replicated DS
needs: build
uses: ./.github/workflows/ca-clone-replicated-ds-test.yml
ca-clone-ssnv1-test:
name: CA clone with SSNv1
needs: build
uses: ./.github/workflows/ca-clone-ssnv1-test.yml
ca-clone-ssnv2-test:
name: CA clone with SSNv2
needs: build
uses: ./.github/workflows/ca-clone-ssnv2-test.yml