Update emacs snapshots #653
Workflow file for this run
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
name: CI | |
on: | |
pull_request: | |
push: | |
paths-ignore: | |
- '**.md' | |
branches: | |
- master | |
jobs: | |
relock: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@V28 | |
- run: nix flake lock | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Update flake.lock | |
file_pattern: flake.lock | |
nix-matrix: | |
needs: relock | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@V28 | |
- id: set-matrix | |
name: Generate Nix Matrix | |
run: | | |
set -Eeu | |
echo "matrix=$(nix eval --json '.#githubActions.matrix')" >> "$GITHUB_OUTPUT" | |
build: | |
needs: nix-matrix | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: ${{fromJSON(needs.nix-matrix.outputs.matrix)}} | |
timeout-minutes: 30 # Safety net in case of hanging executable | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@V28 | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: emacs-ci | |
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' | |
- run: nix build --system ${{matrix.system}} -L ".#githubActions.checks.${{matrix.system}}.${{ matrix.attr }}" | |
- name: Test if package.el works inside Emacs | |
run: cd tests && HOME=$(pwd) nix run --system ${{matrix.system}} "..#githubActions.checks.${{matrix.system}}.${{ matrix.attr }}" -- -Q --batch \ | |
--eval "(setq debug-on-error t)" --load init.el |