extpython/scripts/bootstrap.sh

15 lines
284 B
Bash
Raw Normal View History

2019-05-31 09:07:08 -07:00
#!/bin/bash -eux
2019-05-31 07:41:20 -07:00
# get metadata
2019-05-31 09:07:08 -07:00
ln -s /src/$VARSFILE /tmp/vars.sh
. /tmp/vars.sh
2019-05-31 14:26:56 -07:00
. /etc/lsb-release #for DISTRIB_CODENAME
2019-05-31 07:41:20 -07:00
# run the build
sudo -Hu builder /build.sh
# export the debs
2019-05-31 14:26:56 -07:00
OUTDIR="/src/out/${PYTHON_RELEASE}/${DISTRIB_CODENAME}"
2019-05-31 07:41:20 -07:00
mkdir -p $OUTDIR
cp /build/out/* $OUTDIR