re-enable IFD tests
This commit is contained in:
parent
0509601da1
commit
b996e80488
2 changed files with 10 additions and 5 deletions
5
.github/workflows/build.yaml
vendored
5
.github/workflows/build.yaml
vendored
|
|
@ -3,5 +3,10 @@ on: push
|
||||||
jobs:
|
jobs:
|
||||||
checks:
|
checks:
|
||||||
uses: nixbuild/nixbuild-action/.github/workflows/ci-workflow.yml@v19
|
uses: nixbuild/nixbuild-action/.github/workflows/ci-workflow.yml@v19
|
||||||
|
with:
|
||||||
|
nix_conf: |
|
||||||
|
allow-import-from-derivation = true
|
||||||
|
filter_builds: |
|
||||||
|
'.top_attr == "checks" and .system == "x86_64-linux"'
|
||||||
secrets:
|
secrets:
|
||||||
nixbuild_token: ${{ secrets.nixbuild_token }}
|
nixbuild_token: ${{ secrets.nixbuild_token }}
|
||||||
|
|
|
||||||
10
flake.nix
10
flake.nix
|
|
@ -103,17 +103,17 @@
|
||||||
./test/modules/arr.nix
|
./test/modules/arr.nix
|
||||||
./test/modules/davfs.nix
|
./test/modules/davfs.nix
|
||||||
# TODO: Make this not use IFD
|
# TODO: Make this not use IFD
|
||||||
# ./test/modules/lib.nix
|
./test/modules/lib.nix
|
||||||
./test/modules/nginx.nix
|
./test/modules/nginx.nix
|
||||||
./test/modules/postgresql.nix
|
./test/modules/postgresql.nix
|
||||||
]);
|
]);
|
||||||
};
|
};
|
||||||
|
|
||||||
# TODO: Make this not use IFD
|
# TODO: Make this not use IFD
|
||||||
# lib = nix-flake-tests.lib.check {
|
lib = nix-flake-tests.lib.check {
|
||||||
# inherit pkgs;
|
inherit pkgs;
|
||||||
# tests = pkgs.callPackage ./test/modules/lib.nix {};
|
tests = pkgs.callPackage ./test/modules/lib.nix {};
|
||||||
# };
|
};
|
||||||
}
|
}
|
||||||
// (vm_test "arr" ./test/services/arr.nix)
|
// (vm_test "arr" ./test/services/arr.nix)
|
||||||
// (vm_test "audiobookshelf" ./test/services/audiobookshelf.nix)
|
// (vm_test "audiobookshelf" ./test/services/audiobookshelf.nix)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue