run-checker-ci.yml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. # Jobs run per pull request submission
  8. name: Run-checker CI
  9. on: [pull_request, push]
  10. permissions:
  11. contents: read
  12. jobs:
  13. run-checker:
  14. strategy:
  15. fail-fast: false
  16. matrix:
  17. opt: [
  18. no-cmp,
  19. no-cms,
  20. no-dgram,
  21. no-dh,
  22. no-dtls,
  23. no-ec,
  24. no-ec2m,
  25. no-ecx,
  26. no-http,
  27. no-legacy,
  28. no-sock,
  29. enable-ssl-trace,
  30. no-threads,
  31. no-thread-pool,
  32. no-default-thread-pool,
  33. no-tls,
  34. no-tls1_2,
  35. no-tls1_3,
  36. enable-trace enable-fips,
  37. no-ui,
  38. no-quic
  39. ]
  40. runs-on: ubuntu-latest
  41. steps:
  42. - uses: actions/checkout@v3
  43. - name: checkout fuzz/corpora submodule
  44. run: git submodule update --init --depth 1 fuzz/corpora
  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}