Compare commits

..

2 commits

Author SHA1 Message Date
81af6d3ec3
ci: download lfs modules when building
Some checks failed
On_Push / build (push) Failing after 2m21s
On_Push / deploy (push) Has been skipped
2024-08-11 20:31:46 +01:00
3414e63489
feat: add a devshell 2024-08-11 20:30:30 +01:00
2 changed files with 9 additions and 0 deletions

View file

@ -16,6 +16,8 @@ jobs:
steps: steps:
# get the repo first # get the repo first
- uses: https://code.forgejo.org/actions/checkout@v4 - uses: https://code.forgejo.org/actions/checkout@v4
with:
lfs: true
- name: "Build it locally" - name: "Build it locally"
run: nix build --verbose run: nix build --verbose

View file

@ -38,5 +38,12 @@
buildPhase = "${bfom.defaultPackage.x86_64-linux}/bin/cargo-bfom"; buildPhase = "${bfom.defaultPackage.x86_64-linux}/bin/cargo-bfom";
installPhase = "mkdir -p $out; cp -R build/* $out"; installPhase = "mkdir -p $out; cp -R build/* $out";
}; };
devShells.x86_64-linux.default = pkgs.mkShell {
name = "Skynet presentations env";
nativeBuildInputs = [
bfom.defaultPackage.x86_64-linux
];
};
}; };
} }