[CI] Build Emacsen
This commit is contained in:
parent
e2368dabe4
commit
3a60ed192d
1 changed files with 27 additions and 0 deletions
27
.github/workflows/build.yaml
vendored
Normal file
27
.github/workflows/build.yaml
vendored
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
name: build
|
||||||
|
on:
|
||||||
|
workflow_dispatch: # allows manual triggering
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- update_flake_lock_action
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-thinkpad:
|
||||||
|
if: ${{ always() }}
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- uses: cachix/install-nix-action@v19
|
||||||
|
with:
|
||||||
|
extra_nix_config: |
|
||||||
|
accept-flake-config = true
|
||||||
|
|
||||||
|
- uses: cachix/cachix-action@v12
|
||||||
|
with:
|
||||||
|
name: aciceri-emacs
|
||||||
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
|
|
||||||
|
- run: nix --print-build-logs --verbose build
|
Reference in a new issue