-
Notifications
You must be signed in to change notification settings - Fork 30
52 lines (44 loc) · 1.27 KB
/
pki-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
name: PKI 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/[email protected]
with:
ref: ${{ github.ref }}
check-name: 'Building JSS'
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 30
if: github.event_name == 'push'
- name: Wait for build
uses: lewagon/[email protected]
with:
ref: ${{ github.event.pull_request.head.sha }}
check-name: 'Building JSS'
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 30
if: github.event_name == 'pull_request'
pki-build-test:
name: Testing PKI build
needs: [init, build]
uses: ./.github/workflows/pki-build-test.yml
pki-tools-test:
name: Testing PKI tools
needs: [init, build]
uses: ./.github/workflows/pki-tools-test.yml
pki-ca-test:
name: Testing PKI CA
needs: [init, build]
uses: ./.github/workflows/pki-ca-test.yml
pki-tps-test:
name: Testing PKI TPS
needs: [init, build]
uses: ./.github/workflows/pki-tps-test.yml