am-kernels/.gitea/workflows/build.yml
xinyangli 50f4742914
Some checks failed
Build nix packages / npc-test (push) Failing after 39s
ci: add auto build ci
2024-08-13 20:46:44 +08:00

24 lines
653 B
YAML

name: Build nix packages
on: [push]
jobs:
npc-test:
runs-on: nix
steps:
- uses: https://github.com/cachix/cachix-action@v14
with:
name: ysyx
authToken: '${{ secrets.CACHIX_SIGNING_KEY }}'
- uses: actions/checkout@v4
- name: Cache develop environment
id: cache-nix-develop
uses: actions/cache@v4
with:
path: |
/nix/store
/nix/var/nix/db
key: nix-develop-${{ hashFiles('flake.*') }}
- name: Build am-kernels
run: |
nix build .#{am-kernels}
nix build .#rv32Cross.{am-kernels-nemu, am-kernels-npc}