Skip to content

test

test #11

Workflow file for this run

name: test
on: [push]
jobs:
build-with-channels:
name: Test as Guix channel
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-
# Cannot use a cache for /gnu/store, since restore fails
- name: Install Guix
id: install-guix
uses: PromyLOPh/guix-install-action@v1
with:
channels: |-
(list (channel
(name 'guix)
(url "https://github.com/declantsien/guix")
(branch "master")
(commit
"da9f509b0300f1b6b979c68a52d8669f9bcb89a7")
(introduction
(make-channel-introduction
"9edb3f66fd807b096b48283debdcddccfea34bad"
(openpgp-fingerprint
"BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA"))))
(channel
(name 'rustup)
(url "https://github.com/declantsien/guix-rustup")
(branch "all")
(introduction
(make-channel-introduction
"d95cbf84dc68f5e7a0fc1e54bc582189e0e5079b"
(openpgp-fingerprint
"F695 F39E C625 E081 33B5 759F 0FC6 8703 75EF E2F5")))))
- name: Build
run: guix build rust-bin
- name: Build nightly
run: guix build -e '((@@ (rustup build toolchain) rustup) "nightly-2024-05-12")'
- name: Build nightly
run: guix build -e '((@@ (rustup build toolchain) rustup) "nightly-2024-05-13")'