xinyangli
b02b1d2e37
Some checks failed
Build abstract machine with nix / build-abstract-machine (push) Failing after 8m23s
21 lines
521 B
YAML
21 lines
521 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 }}'
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
- name: Build abstract-machine
|
|
run: |
|
|
nix build .?submodules=1#abstract-machine
|
|
- name: Build nemu
|
|
run: |
|
|
nix build .?submodules=1#nemu
|
|
|