run-checker-merge.yml 1.4 KB

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