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
|
# Jobs run per pull request submission
name: Run-checker CI
on: [pull_request]
jobs:
run-checker:
strategy:
fail-fast: false
matrix:
opt: [
no-cmp,
no-cms,
no-ct,
no-dtls,
no-ec,
no-legacy,
no-siv,
no-sock,
no-srp,
no-srtp,
enable-ssl-trace,
no-tests,
no-threads,
no-tls,
no-tls1_3,
enable-trace,
no-ts,
no-ui,
]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: config
run: CC=clang ./config --strict-warnings ${{ matrix.opt }} && perl configdata.pm --dump
- name: make
run: make -s -j4
- name: make test
run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}
|