]> git.ipfire.org Git - thirdparty/openssl.git/blame - .github/workflows/run-checker-merge.yml
Add openssl/fuzz-corpora repository as submodule
[thirdparty/openssl.git] / .github / workflows / run-checker-merge.yml
CommitLineData
08d8c2d8
P
1# Copyright 2021 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
ab6db11e
P
8name: Run-checker merge
9# Jobs run per merge to master
10
11on: [push]
c6e7f427
VS
12permissions:
13 contents: read
14
ab6db11e
P
15jobs:
16 run-checker:
17 strategy:
18 fail-fast: false
19 matrix:
20 opt: [
1ca61aa5 21 enable-asan enable-ubsan no-shared no-asm -DOPENSSL_SMALL_FOOTPRINT,
ab6db11e
P
22 no-dgram,
23 no-dso,
24 no-dynamic-engine,
25 no-engine no-shared,
26 no-err,
27 no-filenames,
83529f07 28 enable-ubsan no-asm -DOPENSSL_SMALL_FOOTPRINT -fno-sanitize=alignment,
ab6db11e
P
29 no-unit-test,
30 enable-weak-ssl-ciphers,
31 enable-zlib,
32 ]
33 runs-on: ubuntu-latest
34 steps:
4ff66347 35 - uses: actions/checkout@v3
ab6db11e 36 - name: config
7b917179
P
37 run: CC=clang ./config --banner=Configured --strict-warnings ${{ matrix.opt }}
38 - name: config dump
39 run: ./configdata.pm --dump
ab6db11e
P
40 - name: make
41 run: make -s -j4
42 - name: make test
43 run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}