-
Notifications
You must be signed in to change notification settings - Fork 6
80 lines (71 loc) · 2.02 KB
/
Copy pathtest-pull.yml
File metadata and controls
80 lines (71 loc) · 2.02 KB
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
name: wolfKeyMgr Pull Request Build Workflow
on:
push:
branches: [ 'master', 'main', 'release/**' ]
pull_request:
branches: [ '*' ]
jobs:
# Auto-resolve the latest wolfSSL -stable tag so CI tracks releases without a
# manual bump; refs = [ latest -stable, master ].
resolve:
uses: ./.github/workflows/_resolve-wolfssl.yml
build_test:
needs: resolve
strategy:
matrix:
wolfssl-ref: ${{ fromJson(needs.resolve.outputs.refs) }}
uses: ./.github/workflows/make-test.yml
with:
config-args:
make-args:
wolfssl-ref: ${{ matrix.wolfssl-ref }}
build_debug_test:
needs: resolve
strategy:
matrix:
wolfssl-ref: ${{ fromJson(needs.resolve.outputs.refs) }}
uses: ./.github/workflows/make-test.yml
with:
config-args: --enable-debug
make-args:
wolfssl-ref: ${{ matrix.wolfssl-ref }}
build_no_vault_test:
needs: resolve
strategy:
matrix:
wolfssl-ref: ${{ fromJson(needs.resolve.outputs.refs) }}
uses: ./.github/workflows/make-test.yml
with:
config-args: --disable-vault
make-args:
wolfssl-ref: ${{ matrix.wolfssl-ref }}
build_no_sniffer_test:
needs: resolve
strategy:
matrix:
wolfssl-ref: ${{ fromJson(needs.resolve.outputs.refs) }}
uses: ./.github/workflows/make-test.yml
with:
config-args: --disable-sniffer
make-args:
wolfssl-ref: ${{ matrix.wolfssl-ref }}
build_vault_clear_test:
needs: resolve
strategy:
matrix:
wolfssl-ref: ${{ fromJson(needs.resolve.outputs.refs) }}
uses: ./.github/workflows/make-test.yml
with:
config-args: --enable-vault=clear
make-args:
wolfssl-ref: ${{ matrix.wolfssl-ref }}
build_minimal_test:
needs: resolve
strategy:
matrix:
wolfssl-ref: ${{ fromJson(needs.resolve.outputs.refs) }}
uses: ./.github/workflows/make-test.yml
with:
config-args: --disable-sniffer --disable-vault
make-args:
wolfssl-ref: ${{ matrix.wolfssl-ref }}