f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
36 lines
764 B
Bash
36 lines
764 B
Bash
maturinBuildHook() {
|
|
echo "Executing maturinBuildHook"
|
|
|
|
runHook preBuild
|
|
|
|
# Put the wheel to dist/ so that regular Python tooling can find it.
|
|
local dist="$PWD/dist"
|
|
|
|
if [ ! -z "${buildAndTestSubdir-}" ]; then
|
|
pushd "${buildAndTestSubdir}"
|
|
fi
|
|
|
|
(
|
|
set -x
|
|
@setEnv@ maturin build \
|
|
--jobs=$NIX_BUILD_CORES \
|
|
--offline \
|
|
--target @rustTargetPlatformSpec@ \
|
|
--manylinux off \
|
|
--strip \
|
|
--release \
|
|
--out "$dist" \
|
|
${maturinBuildFlags-}
|
|
)
|
|
|
|
if [ ! -z "${buildAndTestSubdir-}" ]; then
|
|
popd
|
|
fi
|
|
|
|
# These are python build hooks and may depend on ./dist
|
|
runHook postBuild
|
|
|
|
echo "Finished maturinBuildHook"
|
|
}
|
|
|
|
buildPhase=maturinBuildHook
|