diff --git a/.github/workflows/guix.yml b/.github/workflows/guix.yml index 70bf03a..8d940a1 100644 --- a/.github/workflows/guix.yml +++ b/.github/workflows/guix.yml @@ -33,6 +33,28 @@ jobs: - name: "Build project guile-ssh" run: | guix build --file=guix.scm + x86_64-linux-gnu-libssh-0-8: + runs-on: "ubuntu-latest" + steps: + - name: "Guix cache" + uses: "actions/cache@v3" + with: + path: "~/.cache/guix" + # use a key that (almost) never matches + key: "guix-cache-${{ github.sha }}" + restore-keys: | + guix-cache- + - name: "Install Guix" + uses: "PromyLOPh/guix-install-action@v1" + - name: "Ensure no locale warning" + run: | + test -z "$(guix --version 2>&1 >/dev/null)" + - name: "Checkout repository" + uses: "actions/checkout@v3" + - name: "Build project guile-ssh" + run: | + export GUILE_SSH_BUILD_WITH_LIBSSH_0_8=1 + guix build --file=guix.scm x86_64-linux-gnu-libssh-0-9: runs-on: "ubuntu-latest" steps: