Skip to content

flake.lock: Update #1342

flake.lock: Update

flake.lock: Update #1342

Workflow file for this run

on:
push:
branches:
- main
pull_request:
name: x86_64-darwin
jobs:
flake-check:
# the latest one for x86_64-darwin
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
with:
extra_nix_config: |
accept-flake-config = true
- name: Flake check
env:
# workaround for segfaults
# https://github.com/NixOS/nix/issues/4246
GC_DONT_GC: 1
run: nix flake check
build-shell:
runs-on: macos-latest
needs:
- flake-check
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
with:
extra_nix_config: |
accept-flake-config = true
- if: ${{ !github.event.pull_request.head.repo.fork }}
uses: cachix/cachix-action@v15
with:
name: "konradmalik"
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- name: Shell build
run: nix build .#devShells.x86_64-darwin.default
build-mbp13:
runs-on: macos-latest
needs:
- flake-check
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
with:
extra_nix_config: |
accept-flake-config = true
- if: ${{ !github.event.pull_request.head.repo.fork }}
uses: cachix/cachix-action@v15
with:
name: "konradmalik"
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- name: Flake build mbp13
run: nix build .#darwinConfigurations.mbp13.system