Skip to content

Commit

Permalink
feat: build guix pack
Browse files Browse the repository at this point in the history
  • Loading branch information
xhcoding committed Dec 10, 2023
1 parent 3b0748b commit 04c0ec3
Show file tree
Hide file tree
Showing 4 changed files with 510 additions and 3,491 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: build
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- 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
uses: PromyLOPh/guix-install-action@v1

- name: Ensure no locale warning
run: test -z "$(guix --version 2>&1 >/dev/null)"

- name: build emacs-x
run: bash build.sh
Loading

0 comments on commit 04c0ec3

Please sign in to comment.