forked from mirrors/nixpkgs
Things changed in the Ninja setup-hook: - Respect installFlags - Automatically add checkPhase (can be disabled with dontUseNinjaCheck in the same way as dontUseNinjaBuild and dontUseNinjaInstall). Tests are only run when "ninja test" exists. - Error in build phase when build.ninja is missing. We don’t have a way to fall back to other build methods, so it’s best to be very clear when we aren’t able to build with ninja - Set -l flag to 1 when enableParallelBuilding is disabled
85 lines
1.9 KiB
Bash
85 lines
1.9 KiB
Bash
ninjaBuildPhase() {
|
|
runHook preBuild
|
|
|
|
local buildCores=1
|
|
|
|
# Parallel building is enabled by default.
|
|
if [ "${enableParallelBuilding-1}" ]; then
|
|
buildCores="$NIX_BUILD_CORES"
|
|
fi
|
|
|
|
local flagsArray=(
|
|
-j$buildCores -l$buildCores
|
|
$ninjaFlags "${ninjaFlagsArray[@]}"
|
|
$buildFlags "${buildFlagsArray[@]}"
|
|
)
|
|
|
|
echoCmd 'build flags' "${flagsArray[@]}"
|
|
ninja "${flagsArray[@]}"
|
|
unset flagsArray
|
|
|
|
runHook postBuild
|
|
}
|
|
|
|
if [ -z "$dontUseNinjaBuild" -a -z "$buildPhase" ]; then
|
|
buildPhase=ninjaBuildPhase
|
|
fi
|
|
|
|
ninjaInstallPhase() {
|
|
runHook preInstall
|
|
|
|
# shellcheck disable=SC2086
|
|
local flagsArray=(
|
|
$ninjaFlags "${ninjaFlagsArray[@]}"
|
|
$installFlags "${installFlagsArray[@]}"
|
|
${installTargets:-install}
|
|
)
|
|
|
|
echoCmd 'install flags' "${flagsArray[@]}"
|
|
ninja "${flagsArray[@]}"
|
|
unset flagsArray
|
|
|
|
runHook postInstall
|
|
}
|
|
|
|
if [ -z "$dontUseNinjaInstall" -a -z "$installPhase" ]; then
|
|
installPhase=ninjaInstallPhase
|
|
fi
|
|
|
|
ninjaCheckPhase() {
|
|
runHook preCheck
|
|
|
|
if [ -z "${checkTarget:-}" ]; then
|
|
if ninja -n test >/dev/null 2>&1; then
|
|
checkTarget=test
|
|
fi
|
|
fi
|
|
|
|
if [ -z "${checkTarget:-}" ]; then
|
|
echo "no check/test target in ${makefile:-Makefile}, doing nothing"
|
|
else
|
|
local buildCores=1
|
|
|
|
if [ "${enableParallelChecking-1}" ]; then
|
|
buildCores="$NIX_BUILD_CORES"
|
|
fi
|
|
|
|
local flagsArray=(
|
|
-j$buildCores -l$buildCores
|
|
$ninjaFlags "${ninjaFlagsArray[@]}"
|
|
$checkFlags "${checkFlagsArray[@]}"
|
|
$checkTarget
|
|
)
|
|
|
|
echoCmd 'check flags' "${flagsArray[@]}"
|
|
ninja "${flagsArray[@]}"
|
|
unset flagsArray
|
|
fi
|
|
|
|
runHook postCheck
|
|
}
|
|
|
|
if [ -z "$dontUseNinjaCheck" -a -z "$checkPhase" ]; then
|
|
checkPhase=ninjaCheckPhase
|
|
fi
|