]> git.ipfire.org Git - thirdparty/openssl.git/blob - .github/workflows/run-checker-ci.yml
Enable QUIC by default
[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-dgram,
23 no-dh,
24 no-dtls,
25 no-ec,
26 no-ec2m,
27 no-ecx,
28 no-http,
29 no-legacy,
30 no-sock,
31 enable-ssl-trace,
32 no-threads,
33 no-thread-pool,
34 no-default-thread-pool,
35 no-tls,
36 no-tls1_2,
37 no-tls1_3,
38 enable-trace enable-fips,
39 no-ui,
40 no-quic
41 ]
42 runs-on: ubuntu-latest
43 steps:
44 - uses: actions/checkout@v3
45 - name: checkout fuzz/corpora submodule
46 run: git submodule update --init --depth 1 fuzz/corpora
47 - name: config
48 run: CC=clang ./config --banner=Configured --strict-warnings ${{ matrix.opt }}
49 - name: config dump
50 run: ./configdata.pm --dump
51 - name: make
52 run: make -s -j4
53 - name: make test
54 run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}