comment lines
This commit is contained in:
parent
7f91010f89
commit
e1eba1e539
|
@ -29,7 +29,7 @@ stages:
|
||||||
|
|
||||||
.time_script: &time_script
|
.time_script: &time_script
|
||||||
|
|
|
|
||||||
echo Timer start!
|
# Timer setup
|
||||||
procstarttime=$(date -u '+%s')
|
procstarttime=$(date -u '+%s')
|
||||||
|
|
||||||
s_timestamp() {
|
s_timestamp() {
|
||||||
|
@ -50,7 +50,7 @@ stages:
|
||||||
|
|
||||||
exec 1> >(s_timestamp)
|
exec 1> >(s_timestamp)
|
||||||
exec 2> >(s_timestamp)
|
exec 2> >(s_timestamp)
|
||||||
|
echo Timer start!
|
||||||
|
|
||||||
build_dep_wheels:
|
build_dep_wheels:
|
||||||
cache:
|
cache:
|
||||||
|
@ -98,9 +98,9 @@ build_dep_wheels:
|
||||||
# remove universal wheels (those are probably downloaded from pypi or already uploaded)
|
# remove universal wheels (those are probably downloaded from pypi or already uploaded)
|
||||||
- rm -f wheelhouse/*-none-any.whl wheelhouse/*-musllinux_*.whl
|
- rm -f wheelhouse/*-none-any.whl wheelhouse/*-musllinux_*.whl
|
||||||
- ls -l wheelhouse
|
- ls -l wheelhouse
|
||||||
|
- |
|
||||||
# correction of wheel tagging needed to workaround maturin and other 3-rd party packagers problems on multi-arch envs..
|
# correction of wheel tagging needed to workaround maturin and other 3-rd party packagers problems on multi-arch envs..
|
||||||
# https://github.com/PyO3/maturin/issues/1289 but appears on other arches and packagers too
|
# https://github.com/PyO3/maturin/issues/1289 but appears on other arches and packagers too
|
||||||
- |
|
|
||||||
for wheel in wheelhouse/* ; do
|
for wheel in wheelhouse/* ; do
|
||||||
echo "Correcting tags for $wheel"
|
echo "Correcting tags for $wheel"
|
||||||
corrected_tag="$(python3 -c "import auditwheel.wheel_abi; print(auditwheel.wheel_abi.analyze_wheel_abi('$wheel').overall_tag)" || true)"
|
corrected_tag="$(python3 -c "import auditwheel.wheel_abi; print(auditwheel.wheel_abi.analyze_wheel_abi('$wheel').overall_tag)" || true)"
|
||||||
|
@ -113,8 +113,8 @@ build_dep_wheels:
|
||||||
venv/bin/wheel pack -d wheelhouse wheeltmp/*
|
venv/bin/wheel pack -d wheelhouse wheeltmp/*
|
||||||
rm -rf wheeltmp
|
rm -rf wheeltmp
|
||||||
done
|
done
|
||||||
# prepare musllinux universal wheels
|
|
||||||
- |
|
- |
|
||||||
|
# prepare musllinux universal wheels
|
||||||
for wheel in wheelhouse/* ; do
|
for wheel in wheelhouse/* ; do
|
||||||
auditwheel repair --strip "$wheel" || true
|
auditwheel repair --strip "$wheel" || true
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue