Compare commits
No commits in common. "2fc840c15280d2dd3da1aba7272243b4aa11e611" and "bf4c685344a6e26ade025e7888603f0715ffcd09" have entirely different histories.
2fc840c152
...
bf4c685344
17
.github/workflows/build.yaml
vendored
17
.github/workflows/build.yaml
vendored
@ -1,17 +0,0 @@
|
|||||||
name: build
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
pull_request:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container:
|
|
||||||
image: ghcr.io/catthehacker/ubuntu:runner-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- uses: cachix/install-nix-action@v27
|
|
||||||
- name: run flacke check
|
|
||||||
run: nix flake check
|
|
||||||
- name: build packages
|
|
||||||
run: ./scripts/build-all.sh
|
|
@ -19,8 +19,8 @@ let
|
|||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "PathOfBuildingCommunity";
|
owner = "PathOfBuildingCommunity";
|
||||||
repo = "PathOfBuilding";
|
repo = "PathOfBuilding";
|
||||||
rev = "f6d095a527017a1b2fd7b523d349f321bfdc2f58";
|
rev = "5667a34b9603287e4e15237346bc3c0f61590860";
|
||||||
hash = "sha256-/pnirZSZBGpbVTdm/jmBzzdMdAiCcYlOiff7HQ2nINM=";
|
hash = "sha256-F40Yjag4iG4pvnFsSTYjyUIMuNM+YYIoCpoEKx1uELw=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ unzip ];
|
nativeBuildInputs = [ unzip ];
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
set -eo pipefail
|
|
||||||
|
|
||||||
packages=$(nix flake show --json --all-systems| \
|
|
||||||
jq -r '.packages["x86_64-linux"] | keys[] | ".#packages.x86_64-linux.\(.)"')
|
|
||||||
|
|
||||||
while IFS= read -r line; do
|
|
||||||
echo "building package $line"
|
|
||||||
nix build -L "$line"
|
|
||||||
echo "done building package $line"
|
|
||||||
done <<< "$packages"
|
|
Loading…
x
Reference in New Issue
Block a user