Linus Heckemann
8b0ac51f12
Before:
error: derivation '/nix/store/4spy3nz1661zm15gkybsy1h5f36aliwx-python3.11-test-1.0.0.drv' may not be deterministic: output '/nix/store/ccqcp01zg18wp9iadzmzimqzdi3ll08d-python3.11-test-1.0.0-dist' differs from '/nix/store/ccqcp01zg18wp9iadzmzimqzdi3ll08d-python3.11-test-1.0.0-dist.check'
After:
error: derivation '4spy3nz1661zm15gkybsy1h5f36aliwx-python3.11-test-1.0.0.drv' may not be deterministic: outputs differ
output differs: output '/nix/store/ccqcp01zg18wp9iadzmzimqzdi3ll08d-python3.11-test-1.0.0-dist' differs from '/nix/store/ccqcp01zg18wp9iadzmzimqzdi3ll08d-python3.11-test-1.0.0-dist.check'
output differs: output '/nix/store/yl59v08356i841c560alb0zmk7q16klb-python3.11-test-1.0.0' differs from '/nix/store/yl59v08356i841c560alb0zmk7q16klb-python3.11-test-1.0.0.check'
Change-Id: Ib2871fa602bf1fa9c00e2565b3a2e1b26f908152
62 lines
1.5 KiB
Nix
62 lines
1.5 KiB
Nix
{checkBuildId ? 0}:
|
|
|
|
with import ./config.nix;
|
|
|
|
{
|
|
nondeterministic = mkDerivation {
|
|
inherit checkBuildId;
|
|
name = "nondeterministic";
|
|
outputs = ["a" "b"];
|
|
buildCommand =
|
|
''
|
|
mkdir $a $b
|
|
date +%s.%N > $a/date
|
|
date +%s.%N > $b/date
|
|
echo "CHECK_TMPDIR=$TMPDIR"
|
|
echo "checkBuildId=$checkBuildId"
|
|
echo "$checkBuildId" > $TMPDIR/checkBuildId
|
|
'';
|
|
};
|
|
|
|
deterministic = mkDerivation {
|
|
inherit checkBuildId;
|
|
name = "deterministic";
|
|
outputs = ["a" "b"];
|
|
buildCommand =
|
|
''
|
|
mkdir $a $b
|
|
echo date > $a/date
|
|
echo date > $b/date
|
|
echo "CHECK_TMPDIR=$TMPDIR"
|
|
echo "checkBuildId=$checkBuildId"
|
|
echo "$checkBuildId" > $TMPDIR/checkBuildId
|
|
'';
|
|
};
|
|
|
|
failed = mkDerivation {
|
|
inherit checkBuildId;
|
|
name = "failed";
|
|
outputs = ["a" "b"];
|
|
buildCommand =
|
|
''
|
|
mkdir $a $b
|
|
echo date > $a/date
|
|
echo date > $b/date
|
|
echo "CHECK_TMPDIR=$TMPDIR"
|
|
echo "checkBuildId=$checkBuildId"
|
|
echo "$checkBuildId" > $TMPDIR/checkBuildId
|
|
false
|
|
'';
|
|
};
|
|
|
|
hashmismatch = import <nix/fetchurl.nix> {
|
|
url = "file://" + builtins.getEnv "TEST_ROOT" + "/dummy";
|
|
sha256 = "0mdqa9w1p6cmli6976v4wi0sw9r4p5prkj7lzfd1877wk11c9c73";
|
|
};
|
|
|
|
fetchurl = import <nix/fetchurl.nix> {
|
|
url = "file://" + toString ./lang/eval-okay-xml.exp.xml;
|
|
sha256 = "sha256-behBlX+DQK/Pjvkuc8Tx68Jwi4E5v86wDq+ZLaHyhQE=";
|
|
};
|
|
}
|