2024-03-25 17:03:00 +00:00
|
|
|
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
|
2024-03-26 02:24:52 +00:00
|
|
|
with:
|
|
|
|
submodules: true
|
2024-03-25 17:03:00 +00:00
|
|
|
- name: Build abstract-machine
|
|
|
|
run: |
|
2024-03-26 04:12:02 +00:00
|
|
|
nix build .?submodules=1#abstract-machine
|
2024-03-25 17:03:00 +00:00
|
|
|
- name: Build nemu
|
|
|
|
run: |
|
2024-03-26 04:12:02 +00:00
|
|
|
nix build .?submodules=1#nemu
|
2024-03-25 17:03:00 +00:00
|
|
|
|