2022-03-27 18:11:32 +03:00
|
|
|
{
|
|
|
|
self,
|
|
|
|
lib,
|
2022-04-23 16:09:55 +03:00
|
|
|
async,
|
|
|
|
bash,
|
2022-03-27 18:11:32 +03:00
|
|
|
coreutils,
|
2022-03-28 19:41:33 +03:00
|
|
|
git,
|
2022-05-17 14:56:08 +03:00
|
|
|
parallel,
|
2022-03-27 18:11:32 +03:00
|
|
|
nix,
|
|
|
|
utils,
|
|
|
|
dream2nixWithExternals,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
l = lib // builtins;
|
|
|
|
examples = ../../examples;
|
2022-05-17 14:56:08 +03:00
|
|
|
testScript =
|
|
|
|
utils.writePureShellScript
|
|
|
|
[
|
|
|
|
async
|
|
|
|
bash
|
|
|
|
coreutils
|
|
|
|
git
|
|
|
|
nix
|
|
|
|
]
|
|
|
|
''
|
|
|
|
dir=$1
|
2022-05-18 21:42:05 +03:00
|
|
|
shift
|
2022-05-18 21:45:26 +03:00
|
|
|
echo -e "\ntesting example for $dir"
|
2022-05-17 14:56:08 +03:00
|
|
|
cp -r ${examples}/$dir/* .
|
|
|
|
chmod -R +w .
|
|
|
|
nix flake lock --override-input dream2nix ${../../.}
|
2022-08-15 16:34:24 +03:00
|
|
|
nix run .#resolveImpure --show-trace
|
2022-07-24 19:53:38 +03:00
|
|
|
# disable --read-only check for these because they do IFD so they will
|
|
|
|
# write to store at eval time
|
|
|
|
evalBlockList=("haskell_cabal-plan" "haskell_stack-lock")
|
|
|
|
if [[ ! ((''${evalBlockList[*]} =~ "$dir")) ]]; then
|
|
|
|
nix eval --read-only --no-allow-import-from-derivation .#default.name
|
|
|
|
fi
|
2022-05-18 21:42:05 +03:00
|
|
|
nix flake check "$@"
|
2022-05-17 14:56:08 +03:00
|
|
|
'';
|
2022-03-27 18:11:32 +03:00
|
|
|
in
|
|
|
|
utils.writePureShellScript
|
|
|
|
[
|
|
|
|
coreutils
|
2022-05-17 14:56:08 +03:00
|
|
|
parallel
|
2022-03-27 18:11:32 +03:00
|
|
|
]
|
|
|
|
''
|
2022-04-17 15:42:48 +03:00
|
|
|
if [ -z ''${1+x} ]; then
|
2022-06-16 19:10:04 +03:00
|
|
|
parallel --halt now,fail=1 -j$(nproc) -a <(ls ${examples}) ${testScript}
|
2022-04-17 15:42:48 +03:00
|
|
|
else
|
2022-05-18 21:42:05 +03:00
|
|
|
arg1=$1
|
|
|
|
shift
|
|
|
|
${testScript} $arg1 "$@"
|
2022-04-15 02:15:37 +03:00
|
|
|
fi
|
2022-03-27 18:11:32 +03:00
|
|
|
''
|