run-checker-ci.yml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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-ct,
  21. no-dtls,
  22. no-ec,
  23. no-ec2m,
  24. no-legacy,
  25. no-rfc3779,
  26. no-sock,
  27. no-srp,
  28. no-srtp,
  29. enable-ssl-trace,
  30. no-tests,
  31. no-threads,
  32. no-tls,
  33. no-tls1_2,
  34. no-tls1_3,
  35. enable-trace enable-fips,
  36. no-ts,
  37. no-ui,
  38. ]
  39. runs-on: ubuntu-latest
  40. steps:
  41. - uses: actions/checkout@v2
  42. - name: config
  43. run: CC=clang ./config --banner=Configured --strict-warnings ${{ matrix.opt }}
  44. - name: config dump
  45. run: ./configdata.pm --dump
  46. - name: make
  47. run: make -s -j4
  48. - name: make test
  49. run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}