Print list of CI paths when building

This commit is contained in:
Rodrigo Arias 2023-10-02 10:52:04 +02:00
parent 916e4f49a6
commit 0184f5e382

View File

@ -80,6 +80,10 @@ in bscPkgs // {
"printf '%s\n' ${toString (collect isDerivation final.bsc-ci.test)} > $out";
all = final.runCommand "ci-all" { }
"printf '%s\n' ${toString [ final.bsc-ci.pkgs final.bsc-ci.tests ]} > $out";
''
deps="${toString [ final.bsc-ci.pkgs final.bsc-ci.tests ]}"
cat $deps
printf '%s\n' $deps > $out
'';
};
}