-
Notifications
You must be signed in to change notification settings - Fork 138
67 lines (58 loc) · 1.71 KB
/
tps-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
name: TPS Tests
on: [push, pull_request]
jobs:
init:
name: Initialization
uses: ./.github/workflows/init.yml
secrets: inherit
build:
name: Waiting for build
needs: init
runs-on: ubuntu-latest
steps:
- name: Wait for build
uses: lewagon/wait-on-check-action@v1.2.0
with:
ref: ${{ github.ref }}
check-name: 'Building PKI'
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 30
if: github.event_name == 'push'
- name: Wait for build
uses: lewagon/wait-on-check-action@v1.2.0
with:
ref: ${{ github.event.pull_request.head.sha }}
check-name: 'Building PKI'
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 30
if: github.event_name == 'pull_request'
tps-basic-test:
name: Basic TPS
needs: [init, build]
uses: ./.github/workflows/tps-basic-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
tps-separate-test:
name: TPS on separate instance
needs: [init, build]
uses: ./.github/workflows/tps-separate-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
tps-external-certs-test:
name: TPS with external certs
needs: [init, build]
uses: ./.github/workflows/tps-external-certs-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
tps-clone-test:
name: TPS clone
needs: [init, build]
uses: ./.github/workflows/tps-clone-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}
tps-hsm-test:
name: TPS with HSM
needs: [init, build]
uses: ./.github/workflows/tps-hsm-test.yml
with:
db-image: ${{ needs.init.outputs.db-image }}