Skip to content

Commit

Permalink
.github/workflows/guix: Add new jobs
Browse files Browse the repository at this point in the history
* .github/workflows/guix (x86_64-linux-gnu-libssh-0-8-0)
(x86_64-linux-gnu-libssh-0-8-1): New jobs.
  • Loading branch information
artyom-poptsov committed Nov 10, 2024
1 parent 4b6f054 commit 28a11d3
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/guix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,50 @@ jobs:
- name: "Build project guile-ssh"
run: |
guix build --file=guix.scm
x86_64-linux-gnu-libssh-0-8-0:
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_0=1
guix build --file=guix.scm
x86_64-linux-gnu-libssh-0-8-1:
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=1
guix build --file=guix.scm
x86_64-linux-gnu-libssh-0-8:
runs-on: "ubuntu-latest"
steps:
Expand Down

0 comments on commit 28a11d3

Please sign in to comment.