From bb9e6e3fd6b05049055030416a50f35ddff0030a Mon Sep 17 00:00:00 2001 From: JacobBarthelmeh Date: Fri, 4 Apr 2025 11:24:54 -0600 Subject: [PATCH] add a CI test for Ada build --- .github/workflows/ada.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/ada.yml diff --git a/.github/workflows/ada.yml b/.github/workflows/ada.yml new file mode 100644 index 000000000..70957e58b --- /dev/null +++ b/.github/workflows/ada.yml @@ -0,0 +1,33 @@ +name: WolfSSL Ada Build Tests + +on: + push: + branches: [ 'master', 'main', 'release/**' ] + pull_request: + branches: [ '*' ] + +jobs: + build: + + 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 client.gpr