]> git.ipfire.org Git - thirdparty/openssl.git/blob - .github/workflows/run-checker-ci.yml
Implement AES-GCM-SIV (RFC8452)
[thirdparty/openssl.git] / .github / workflows / run-checker-ci.yml
1 # Copyright 2021-2022 The OpenSSL Project Authors. All Rights Reserved.
2 #
3 # Licensed under the Apache License 2.0 (the "License"). You may not use
4 # this file except in compliance with the License. You can obtain a copy
5 # in the file LICENSE in the source distribution or at
6 # https://www.openssl.org/source/license.html
7
8 # Jobs run per pull request submission
9 name: Run-checker CI
10 on: [pull_request, push]
11 permissions:
12 contents: read
13
14 jobs:
15 run-checker:
16 strategy:
17 fail-fast: false
18 matrix:
19 opt: [
20 no-cmp,
21 no-cms,
22 no-ct,
23 no-dtls,
24 no-ec,
25 no-ec2m,
26 no-siv,
27 no-legacy,
28 no-rfc3779,
29 no-sock,
30 no-srp,
31 no-srtp,
32 enable-ssl-trace,
33 no-tests,
34 no-threads,
35 no-tls,
36 no-tls1_2,
37 no-tls1_3,
38 enable-trace enable-fips,
39 no-ts,
40 no-ui,
41 ]
42 runs-on: ubuntu-latest
43 steps:
44 - uses: actions/checkout@v2
45 - name: config
46 run: CC=clang ./config --banner=Configured --strict-warnings ${{ matrix.opt }}
47 - name: config dump
48 run: ./configdata.pm --dump
49 - name: make
50 run: make -s -j4
51 - name: make test
52 run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}