Add option to use No_Elaboration_Code_All
pragma.
#14
This file contains 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
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
env: | |
SVD2ADA_COMPILE_CHECKS: enabled | |
SVD2ADA_RUNTIME_CHECKS: enabled | |
SVD2ADA_STYLE_CHECKS: enabled | |
SVD2ADA_CONTRACTS: enabled | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
gnat_version: [^11] | |
gprbuild_version: [^21] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: alire-project/setup-alire@v1 | |
with: | |
toolchain: gprbuild${{ matrix.gprbuild_version }} gnat_native${{ matrix.gnat_version }} --disable-assistant | |
- run: alr build |