Relax Try_Allocate_Request loop #12
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
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| setup: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| directories: ${{ steps.list-dirs.outputs.matrix }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - id: list-dirs | |
| run: | | |
| # Finds example subdirs and creates a JSON array ["dir1", "dir2"] | |
| DIRS=$(find examples -maxdepth 1 -mindepth 1 -type d -printf '%P\n' | jq -R -s -c 'split("\n")[:-1]') | |
| echo "matrix=$DIRS" >> $GITHUB_OUTPUT | |
| build: | |
| strategy: | |
| matrix: | |
| os: ["ubuntu-latest", "windows-latest"] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: alire-project/setup-alire@v4 | |
| with: | |
| version: 2.1.0 | |
| - name: Build (validation) | |
| run: | | |
| alr build --validation | |
| - name: Build examples | |
| shell: bash | |
| run: | | |
| cd examples | |
| ./build-all.sh --profile=validation | |
| prove: | |
| needs: setup | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| subdir: ${{ fromJson(needs.setup.outputs.directories) }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: alire-project/setup-alire@v4 | |
| with: | |
| version: 2.1.0 | |
| - name: Prove example ${{ matrix.subdir }} | |
| shell: bash | |
| run: | | |
| cd examples/${{ matrix.subdir }} | |
| alr build --stop-after=generation | |
| alr exec -- gnatprove \ | |
| -P ${{ matrix.subdir}}.gpr \ | |
| --level=1 \ | |
| -j0 \ | |
| --warnings=error \ | |
| --checks-as-errors=on |