diff options
author | EuAndreh <eu@euandre.org> | 2020-08-19 11:17:11 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-08-19 11:17:11 -0300 |
commit | de84fbfb252d279fb6997255aa6e09c5a594f818 (patch) | |
tree | a5c2eec390f1009933801b3915dab028805d3449 /_posts/2020-08-10-guix-inside-sourcehut-builds-sr-ht-ci.md | |
parent | assert-content.sh: Uncomment debug exit (diff) | |
download | euandre.org-de84fbfb252d279fb6997255aa6e09c5a594f818.tar.gz euandre.org-de84fbfb252d279fb6997255aa6e09c5a594f818.tar.xz |
Update Guix on sr.ht article: Use make instead of ad-hoc scripts
Diffstat (limited to '')
-rw-r--r-- | _posts/2020-08-10-guix-inside-sourcehut-builds-sr-ht-ci.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/_posts/2020-08-10-guix-inside-sourcehut-builds-sr-ht-ci.md b/_posts/2020-08-10-guix-inside-sourcehut-builds-sr-ht-ci.md index c13a4db..4a5d9b3 100644 --- a/_posts/2020-08-10-guix-inside-sourcehut-builds-sr-ht-ci.md +++ b/_posts/2020-08-10-guix-inside-sourcehut-builds-sr-ht-ci.md @@ -1,6 +1,7 @@ --- title: Guix inside sourcehut builds.sr.ht CI date: 2020-08-10 +update_at: 2020-08-19 layout: post lang: en ref: guix-sourcehut-ci @@ -98,11 +99,10 @@ tasks: echo 'export PATH="${HOME}/.config/guix/current/bin${PATH:+:}$PATH"' >> ~/.buildenv - tests: | cd ./songbooks/ - guix environment -m build-aux/guix.scm -- ./scripts/run-all-tests.sh || echo -e '\033[1;31mFAILED BUILD\033[0m' + guix environment -m build-aux/guix.scm -- make check - docs: | cd ./songbooks/ - guix environment -m build-aux/guix.scm -- ./scripts/build-documentation.sh - ./scripts/publish-documentation.sh + guix environment -m build-aux/guix.scm -- make publish-dist ``` We have to add the `guix-daemon` to `~/.buildenv` so it can be started on every |