Cleanup AddCRL mutex and alloc/free #3497
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: WolfSSL Ada Build Tests | |
| on: | |
| push: | |
| branches: [ 'master', 'main', 'release/**' ] | |
| pull_request: | |
| branches: [ '*' ] | |
| jobs: | |
| build: | |
| if: github.repository_owner == 'wolfssl' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Install gnat | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y gnat gprbuild | |
| - name: Checkout wolfssl | |
| uses: actions/checkout@master | |
| with: | |
| repository: wolfssl/wolfssl | |
| path: wolfssl | |
| - name: Build wolfssl Ada | |
| working-directory: ./wolfssl/wrapper/Ada | |
| run: | | |
| mkdir obj | |
| gprbuild default.gpr | |
| gprbuild examples.gpr |