mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-01-27 08:12:19 +01:00
35 lines
684 B
YAML
35 lines
684 B
YAML
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
|