Merge remote-tracking branch 'gnu/master' #478
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: "Nix CI" | |
on: | |
pull_request: | |
push: | |
jobs: | |
nix-build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
- os: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Free up disk space for Ubuntu runner | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
uses: ./.github/actions/free-disk-space | |
- uses: cachix/install-nix-action@v26 | |
- name: Nix Flake Check | |
run: nix -Lv flake check | |
- uses: cachix/cachix-action@v14 | |
with: | |
name: mycache | |
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
extraPullNames: emacsng | |
- name: Run Emacsng Exec | |
run: nix -Lv run .#emacsng-noNativeComp -- --version |