-
Notifications
You must be signed in to change notification settings - Fork 71
89 lines (80 loc) · 2.64 KB
/
nightly-next.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
79
80
81
82
83
84
85
86
87
88
89
name: Nightly Next Branch Checks
on:
schedule:
# Every night at midnight
- cron: "0 0 * * *"
workflow_dispatch:
inputs:
rev:
description: "Revision hash to run against"
required: false
default: ""
env:
TEST_ALL_DOCKER_IMAGE: 'ghcr.io/parallaxsecond/parsec-service-test-all'
jobs:
all-providers:
name: Various tests targeting a Parsec image with all providers included
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: "${{ github.event.inputs.rev }}"
- name: Run the container to execute the test script
uses: ./.github/actions/ci_script
with:
ci-flags: "all --test-next-branch-tracking"
build-all-providers:
name: Cargo check all-providers (current Rust stable & old compiler)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: "${{ github.event.inputs.rev }}"
- name: Run the container to execute the test script
uses: ./.github/actions/ci_script
with:
ci-flags: "cargo-check --test-next-branch-tracking"
mbed-crypto-provider:
name: Integration tests using Mbed Crypto provider
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: "${{ github.event.inputs.rev }}"
- name: Run the container to execute the test script
uses: ./.github/actions/ci_script
with:
ci-flags: "mbed-crypto --test-next-branch-tracking"
pkcs11-provider:
name: Integration tests using PKCS 11 provider
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: "${{ github.event.inputs.rev }}"
- name: Run the container to execute the test script
uses: ./.github/actions/ci_script
with:
ci-flags: "pkcs11 --no-stress-test --test-next-branch-tracking"
tpm-provider:
name: Integration tests using TPM provider
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: "${{ github.event.inputs.rev }}"
- name: Run the container to execute the test script
uses: ./.github/actions/ci_script
with:
ci-flags: "tpm --test-next-branch-tracking"
trusted-service-provider:
name: Integration tests using Crypto Trusted Service provider
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: "${{ github.event.inputs.rev }}"
- name: Run the container to execute the test script
uses: ./.github/actions/ci_script
with:
ci-flags: "trusted-service --test-next-branch-tracking"