19 lines
423 B
YAML
19 lines
423 B
YAML
|
name: Build abstract machine with nix
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: https://github.com/cachix/install-nix-action@v22
|
||
|
with:
|
||
|
nix_path: nixpkgs=channel:nixos-23.11
|
||
|
- uses: actions/checkout@v4
|
||
|
sparse-checkout: |
|
||
|
flake.nix
|
||
|
abstract-machine
|
||
|
- name: Build with nix
|
||
|
run: |
|
||
|
nix build -L .#abstract-machine
|
||
|
|