011911bc54
The hook is added to buildLuarocksPackage when doCheck is set to true.
18 lines
421 B
Bash
18 lines
421 B
Bash
# Setup hook for checking whether Python imports succeed
|
|
echo "Sourcing luarocks-check-hook.sh"
|
|
|
|
luarocksCheckPhase () {
|
|
echo "Executing luarocksCheckPhase"
|
|
runHook preCheck
|
|
|
|
luarocks test
|
|
|
|
runHook postCheck
|
|
echo "Finished executing luarocksCheckPhase"
|
|
}
|
|
|
|
if [ -z "${dontLuarocksCheck-}" ] && [ -z "${checkPhase-}" ]; then
|
|
echo "Using luarocksCheckPhase"
|
|
checkPhase+=" luarocksCheckPhase"
|
|
fi
|
|
|