We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e5c275a + 3625391 commit 16a6818Copy full SHA for 16a6818
1 file changed
.github/workflows/ada.yml
@@ -0,0 +1,33 @@
1
+name: WolfSSL Ada Build Tests
2
+
3
+on:
4
+ push:
5
+ branches: [ 'master', 'main', 'release/**' ]
6
+ pull_request:
7
+ branches: [ '*' ]
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@master
16
17
+ - name: Install gnat
18
+ run: |
19
+ sudo apt-get update
20
+ sudo apt-get install -y gnat gprbuild
21
22
+ - name: Checkout wolfssl
23
+ uses: actions/checkout@master
24
+ with:
25
+ repository: wolfssl/wolfssl
26
+ path: wolfssl
27
28
+ - name: Build wolfssl Ada
29
+ working-directory: ./wolfssl/wrapper/Ada
30
31
+ mkdir obj
32
+ gprbuild default.gpr
33
+ gprbuild examples.gpr
0 commit comments