Skip to content

Commit

Permalink
Self-review
Browse files Browse the repository at this point in the history
  • Loading branch information
mosteo committed Jul 15, 2024
1 parent 49b93ee commit 7da436a
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 6 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/ci-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,18 @@ jobs:
with:
submodules: true

- name: OS information for ${{ matrix.tag }}
uses: mosteo-actions/docker-run@v2
with:
image: ghcr.io/alire-project/docker/gnat:${{matrix.tag}}
command: |
lsb_release -a || \
cat /etc/os-release || \
cat /etc/system-release || \
echo "No lsb_release information"
- name: Run test script (${{ matrix.tag }})
uses: mosteo-actions/docker-run@v1
uses: mosteo-actions/docker-run@v2
with:
image: ghcr.io/alire-project/docker/gnat:${{matrix.tag}}
command: scripts/ci-github.sh
Expand Down
5 changes: 3 additions & 2 deletions alire.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ windows = { ALIRE_OS = "windows" }

# Some dependencies require precise versions during the development cycle:
[[pins]]

[pins.aaa]
url = "https://github.com/mosteo/aaa"
commit = "0c3b440ac183c450345d4a67d407785678779aae"
Expand All @@ -60,15 +61,15 @@ commit = "da4e59c382ceb0de6733d571ecbab7ea4919b33d"

[pins.c_strings]
url = "https://github.com/mosteo/cstrings"
commit = "e5b1931d47b9fee273177773fb5e3f8979bc6076"
commit = "e4d58ad90bf32bc44304197e5906a519f5a9a7bf"

[pins.clic]
url = "https://github.com/alire-project/clic"
commit = "56bbdc008e16996b6f76e443fd0165a240de1b13"

[pins.den]
url = "https://github.com/mosteo/den"
commit = "1f0fe7df0e479e1bf86edd607ffea6bfddb9352e"
commit = "74ec97ba66b56dea23a963deef12ad72b5b1c731"

[pins.dirty_booleans]
url = "https://github.com/mosteo/dirty_booleans"
Expand Down
2 changes: 1 addition & 1 deletion deps/cstrings
Submodule cstrings updated 1 files
+5 −0 c_strings.gpr
2 changes: 1 addition & 1 deletion deps/den
Submodule den updated 1 files
+7 −4 alire.toml
7 changes: 6 additions & 1 deletion scripts/ci-github.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,12 @@ fi

echo ALR SEARCH:
# List releases for the record
alr -q -d search --list --external
alr -q -d search --list --external || \
{
echo "Failed to list releases"
tree /root/.config/alire/indexes/community/repo
exit 1;
}
echo ............................

echo TESTSUITE:
Expand Down

0 comments on commit 7da436a

Please sign in to comment.