xinyangli
e2e1be2fd5
Some checks failed
Build abstract machine with nix / build-abstract-machine (push) Failing after 1m34s
25 lines
609 B
YAML
25 lines
609 B
YAML
name: Build abstract machine with nix
|
|
on: [push]
|
|
|
|
jobs:
|
|
build-abstract-machine:
|
|
runs-on: nix
|
|
steps:
|
|
- uses: https://github.com/cachix/cachix-action@v14
|
|
with:
|
|
name: ysyx
|
|
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
|
|
- name: Watch nix store
|
|
run: |
|
|
- cachix watch-store ysyx
|
|
- uses: actions/checkout@v4
|
|
sparse-checkout: |
|
|
flake.nix
|
|
abstract-machine
|
|
- name: Build abstract-machine
|
|
run: |
|
|
nix build .#abstract-machine
|
|
- name: Build nemu
|
|
run: |
|
|
nix build .#nemu
|
|
|