-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
634dced
commit 1617f54
Showing
5 changed files
with
110 additions
and
459 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: build | ||
on: | ||
push: | ||
paths-ignore: | ||
- 'README.org' | ||
- '.guix-authorizations' | ||
- '.guix-channel' | ||
pull_request: | ||
schedule: | ||
# weekly builds, making sure everything still works with guix-proper | ||
- cron: '39 3 * * 0' | ||
jobs: | ||
build: | ||
name: Build package | ||
runs-on: ubuntu-latest | ||
strategy: | ||
# building independent packages, don’t abort entire build if one fails | ||
fail-fast: false | ||
matrix: | ||
package: | ||
- rust-bin | ||
steps: | ||
- name: Guix cache | ||
uses: actions/cache@v2 | ||
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: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Lint package | ||
run: | | ||
GUIX_PROFILE="/home/runner/.config/guix/current" | ||
. "$GUIX_PROFILE/etc/profile" | ||
guix lint -L . ${{ matrix.package }} |& sed -nre 's#(.*):([0-9]+):([0-9]+): (.*)$#::warning file=\1,line=\2,col=\3::\4#gp' | ||
- name: Build package | ||
run: | | ||
GUIX_PROFILE="/home/runner/.config/guix/current" | ||
. "$GUIX_PROFILE/etc/profile" | ||
guix build -L . ${{ matrix.package }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: test | ||
on: [push] | ||
jobs: | ||
build-with-channels: | ||
name: Test as Guix channel | ||
runs-on: ubuntu-latest | ||
strategy: | ||
# building independent packages, don’t abort entire build if one fails | ||
fail-fast: false | ||
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") | ||
(introduction | ||
(make-channel-introduction | ||
"325d3e2859d482c16da21eb07f2c6ff9c6c72a80" | ||
(openpgp-fingerprint | ||
"F695 F39E C625 E081 33B5 759F 0FC6 8703 75EF E2F5"))))) | ||
- name: Build | ||
run: guix build rust-bin | ||
- name: Build | ||
run: guix build -e '((@@ (rustup build toolchain) rustup) "1.78.0")' | ||
- name: Build | ||
run: guix build -e '((@@ (rustup build toolchain) rustup) "nightly-2024-05-13")' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.