]> git.ipfire.org Git - thirdparty/openssl.git/blob - .github/workflows/run-checker-merge.yml
Copyright year updates
[thirdparty/openssl.git] / .github / workflows / run-checker-merge.yml
1 # Copyright 2021-2023 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 name: Run-checker merge
9 # Jobs run per merge to master
10
11 on: [push]
12 permissions:
13 contents: read
14
15 jobs:
16 run-checker:
17 strategy:
18 fail-fast: false
19 matrix:
20 opt: [
21 enable-asan enable-ubsan no-shared no-asm -DOPENSSL_SMALL_FOOTPRINT,
22 no-ct,
23 no-dso,
24 no-dynamic-engine,
25 no-engine no-shared,
26 no-err,
27 no-filenames,
28 enable-ubsan no-asm -DOPENSSL_SMALL_FOOTPRINT -fno-sanitize=alignment,
29 no-module,
30 no-ocsp,
31 no-pinshared,
32 no-srp,
33 no-srtp,
34 no-ts,
35 enable-weak-ssl-ciphers,
36 enable-zlib,
37 ]
38 runs-on: ubuntu-latest
39 steps:
40 - uses: actions/checkout@v4
41 - name: checkout fuzz/corpora submodule
42 run: git submodule update --init --depth 1 fuzz/corpora
43 - name: config
44 run: CC=clang ./config --banner=Configured --strict-warnings ${{ matrix.opt }}
45 - name: config dump
46 run: ./configdata.pm --dump
47 - name: make
48 run: make -s -j4
49 - name: make test
50 run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}