Add cert/CRL capabilities: skid, akid, dist point, netscape #2944
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: MacOS apple native cert validation tests | |
| # START OF COMMON SECTION | |
| on: | |
| push: | |
| branches: [ 'master', 'main', 'release/**' ] | |
| pull_request: | |
| branches: [ '*' ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| # END OF COMMON SECTION | |
| jobs: | |
| make_check: | |
| if: github.repository_owner == 'wolfssl' | |
| runs-on: macos-latest | |
| # This should be a safe limit for the tests to run. | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Build and configure wolfSSL | |
| uses: wolfSSL/actions-build-autotools-project@v1 | |
| with: | |
| configure: CFLAGS='-DWOLFSSL_APPLE_NATIVE_CERT_VALIDATION -DWOLFSSL_TEST_APPLE_NATIVE_CERT_VALIDATION -DRSA_MIN_SIZE=2048 -DNO_WOLFSSL_CIPHER_SUITE_TEST' | |