Skip to content

Commit 3aaee0a

Browse files
committed
fix: make crate build again
1 parent b1446f2 commit 3aaee0a

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/main.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@ on: # Run the workflow for each of the following events:
88
jobs:
99
main:
1010
strategy:
11-
11+
1212
fail-fast: false # Don't stop all the workflows when one of them fails.
13-
13+
1414
matrix:
1515
os: [ubuntu-latest, windows-latest, macos-latest] # List of GitHub Actions platform to run the workflow on
1616

1717
runs-on: ${{ matrix.os }} # Run the continuous integration workflow on each OS listed in the matrix.
18-
18+
1919
steps:
2020
# Check-out the repository
2121
- uses: actions/checkout@v2
2222

2323
# Install and setup Alire package manager
2424
- uses: alire-project/setup-alire@v1
2525
with:
26-
version: 1.2.0-rc1
26+
version: 1.2.2
2727

2828
# Build the project using the validation build profile to enforce static analysis and coding style.
2929
- run: alr build --validation
@@ -36,7 +36,7 @@ jobs:
3636

3737
# Build testsuite with instrumented code.
3838
- run: cd tests && alr build -- --src-subdirs=gnatcov-instr --implicit-with=gnatcov_rts_full
39-
39+
4040
# Run the instrumented testsuite. This will produce at least one `.srctrace` file for the coverage analysis.
4141
- run: cd tests && alr exec ./bin/tests
4242

@@ -54,7 +54,7 @@ jobs:
5454
run: |
5555
# Set user GitHub login required for `alr publish`
5656
alr config --set --global user.github_login ${{github.repository_owner}}
57-
57+
5858
# Run Alire publish assistant
5959
alr publish ${{github.server_url}}/${{github.repository}} ${{github.sha}}
6060

alire.toml

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ website = "alire.ada.dev"
1010
licenses = "MIT"
1111

1212
[[depends-on]]
13+
gnat = "^12"
14+
# Normally you don't want to depend on specific compiler versions, so you could
15+
# remove this dependency in your project.
16+
1317
resources = "~0.1.0"
1418
gnatprove = "^11.2.3"
1519

0 commit comments

Comments
 (0)