build(deps): bump DeterminateSystems/nix-installer-action from 14 to 15 in /.github/workflows #39
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: Build | |
on: | |
push: | |
paths: | |
- '**.nix' | |
- '**.rs' | |
- Cargo.* | |
- flake.lock | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
overmask: | |
name: overmask | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- system: aarch64-linux | |
- system: x86_64-linux | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Install QEMU | |
run: | | |
sudo apt update -y | |
sudo apt install -y qemu-user-static | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@v15 | |
with: | |
extra-conf: | | |
log-lines = 500 | |
- name: Set up Cachix | |
uses: cachix/cachix-action@v15 | |
with: | |
name: errornobinaries | |
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
- name: Build for ${{ matrix.system }} | |
run: nix build -L --system ${{ matrix.system }} |