ci: init
Some checks failed
Build abstract machine with nix / build-abstract-machine (push) Has been cancelled
Some checks failed
Build abstract machine with nix / build-abstract-machine (push) Has been cancelled
This commit is contained in:
parent
2cc992a181
commit
5912f59a99
2 changed files with 27 additions and 2 deletions
25
.gitea/workflows/abstract-machine-build.yml
Normal file
25
.gitea/workflows/abstract-machine-build.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
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
|
||||
|
|
@ -20,10 +20,10 @@
|
|||
};
|
||||
in
|
||||
{
|
||||
packages.nemu = pkgs.callPackage ./nemu { am-kernels = self.packages.${system}.am-kernels-cmake; };
|
||||
packages.nemu = pkgs.callPackage ./nemu { am-kernels = self.packages.${system}.am-kernels; };
|
||||
packages.abstract-machine = crossPkgs.callPackage ./abstract-machine { isa = "riscv"; platform = "nemu"; };
|
||||
|
||||
packages.am-kernels-cmake = crossPkgs.stdenv.mkDerivation rec {
|
||||
packages.am-kernels = crossPkgs.stdenv.mkDerivation rec {
|
||||
pname = "am-kernels-cmake";
|
||||
version = "2024.02.18";
|
||||
|
||||
|
|
Loading…
Reference in a new issue