Remove old CI derivation
This commit is contained in:
parent
2a3b269b9c
commit
c724ad2ad3
32
test/ci.nix
32
test/ci.nix
@ -1,32 +0,0 @@
|
|||||||
{ self, super, bsc, testPkgs }:
|
|
||||||
|
|
||||||
let
|
|
||||||
stdenv = self.stdenv;
|
|
||||||
in
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
name = "ci";
|
|
||||||
src = ./ci.nix;
|
|
||||||
dontUnpack = true;
|
|
||||||
|
|
||||||
# Just build some packages
|
|
||||||
buildInputs = testPkgs;
|
|
||||||
|
|
||||||
buildPhase = ''
|
|
||||||
if [ -e /boot ]; then
|
|
||||||
echo Build is NOT under chroot
|
|
||||||
echo This is the content of / :
|
|
||||||
ls -l /
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "OK: Build is under chroot"
|
|
||||||
|
|
||||||
echo "buildInputs:"
|
|
||||||
printf -- "- %s\n" $buildInputs
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
touch $out
|
|
||||||
'';
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user