Update expected versions

This commit is contained in:
Luc Perkins 2024-05-16 20:52:41 -03:00
parent 6b0b02c6a2
commit 8d9c69de11
No known key found for this signature in database
GPG key ID: 16DB1108FB591835

View file

@ -218,8 +218,8 @@ jobs:
strategy: strategy:
matrix: matrix:
versions: versions:
- { nix-installer: "0.12.0", nix: "2.20.0" } - { nix-installer: "0.12.0", nix: "2.18.0" }
- { nix-installer: "0.14.0", nix: "2.20.0" } - { nix-installer: "0.14.0", nix: "2.18.1" }
- { nix-installer: "0.18.0", nix: "2.20.0" } - { nix-installer: "0.18.0", nix: "2.20.0" }
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@ -234,4 +234,6 @@ jobs:
if [ "${NIX_VERSION_OUTPUT}" != "${EXPECTED_OUTPUT}" ]; then if [ "${NIX_VERSION_OUTPUT}" != "${EXPECTED_OUTPUT}" ]; then
echo "Nix version ${NIX_VERSION} didn't match expected version ${{ matrix.versions.nix }}" echo "Nix version ${NIX_VERSION} didn't match expected version ${{ matrix.versions.nix }}"
exit 1 exit 1
else
echo "Success! Nix version ${NIX_VERSION} installed as expected"
fi fi