File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 2
2
set -e -x
3
3
4
4
apt-get update
5
- apt-get install libssl-dev
5
+ apt-get -y install libssl-dev
6
6
7
7
PYBIN=/opt/python/${PYABI} /bin
8
8
" ${PYBIN} /pip" install numpy
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
set -e
3
3
4
+ if [[ " $GITHUB_REF " =~ ^" refs/tags/" ]]; then
5
+ export GITHUB_TAG_REF=" $GITHUB_REF "
6
+ export GIT_TAG=$( echo " $GITHUB_REF " | sed -e " s/refs\/tags\///g" )
7
+ fi
8
+
4
9
if [ -z " $GITHUB_TAG_REF " ]; then
5
10
echo " Not on a tag, won't deploy to pypi"
6
11
else
7
12
docker pull $DOCKER_IMAGE
8
13
pyabis=$( echo $PYABI | tr " :" " \n" )
9
14
for abi in $pyabis ; do
10
15
docker run --rm -e " PYABI=$abi " -e " GIT_TAG=$GIT_TAG " -v ` pwd` :/io \
11
- $DOCKER_IMAGE /io/.github/workflows/build.sh
16
+ $DOCKER_IMAGE $PRE_CMD bash -c " chmod +x /io/.github/workflows/build.sh; /io/.github/workflows/build.sh "
12
17
sudo chown -R $( id -u) :$( id -g) ./*
13
18
mv dist/* .whl /tmp
14
19
done
You can’t perform that action at this time.
0 commit comments