-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4580 from obsidiansystems/restore-test-build-remo…
…te-ca-fixed Restore now-working build-remote-content-addressed-fixed test
- Loading branch information
Showing
6 changed files
with
71 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{ busybox }: | ||
|
||
with import ./config.nix; | ||
|
||
let | ||
|
||
mkDerivation = args: | ||
derivation ({ | ||
inherit system; | ||
builder = busybox; | ||
args = ["sh" "-e" args.builder or (builtins.toFile "builder-${args.name}.sh" "if [ -e .attrs.sh ]; then source .attrs.sh; fi; eval \"$buildCommand\"")]; | ||
outputHashMode = "recursive"; | ||
outputHashAlgo = "sha256"; | ||
} // removeAttrs args ["builder" "meta"]) | ||
// { meta = args.meta or {}; }; | ||
|
||
input1 = mkDerivation { | ||
shell = busybox; | ||
name = "build-remote-input-1"; | ||
buildCommand = "echo FOO > $out"; | ||
requiredSystemFeatures = ["foo"]; | ||
outputHash = "sha256-FePFYIlMuycIXPZbWi7LGEiMmZSX9FMbaQenWBzm1Sc="; | ||
}; | ||
|
||
input2 = mkDerivation { | ||
shell = busybox; | ||
name = "build-remote-input-2"; | ||
buildCommand = "echo BAR > $out"; | ||
requiredSystemFeatures = ["bar"]; | ||
outputHash = "sha256-XArauVH91AVwP9hBBQNlkX9ccuPpSYx9o0zeIHb6e+Q="; | ||
}; | ||
|
||
input3 = mkDerivation { | ||
shell = busybox; | ||
name = "build-remote-input-3"; | ||
buildCommand = '' | ||
read x < ${input2} | ||
echo $x BAZ > $out | ||
''; | ||
requiredSystemFeatures = ["baz"]; | ||
outputHash = "sha256-daKAcPp/+BYMQsVi/YYMlCKoNAxCNDsaivwSHgQqD2s="; | ||
}; | ||
|
||
in | ||
|
||
mkDerivation { | ||
shell = busybox; | ||
name = "build-remote"; | ||
buildCommand = | ||
'' | ||
read x < ${input1} | ||
read y < ${input3} | ||
echo "$x $y" > $out | ||
''; | ||
outputHash = "sha256-5SxbkUw6xe2l9TE1uwCvTtTDysD1vhRor38OtDF0LqQ="; | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
source common.sh | ||
|
||
file=build-hook-ca-fixed.nix | ||
|
||
source build-remote.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters