File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
# XXX: TODO: we should make this include -e once tests pass
2
2
set -xuo pipefail
3
3
4
- docker build . -t jmadler/python-future-builder
5
- docker push jmadler/python-future-builder:latest
6
-
4
+ DOCKER_IMAGE=jmadler/python-future-builder
5
+ # XXX: TODO: Perhaps this version shouldn't be hardcoded
7
6
version=0.18.2
8
7
8
+ docker build . -t $DOCKER_IMAGE
9
+ docker push $DOCKER_IMAGE :latest
10
+
9
11
for i in py26 py27 py33 py34 py35 py36 py37 py38 py39; do
10
- docker run -ti -v $( realpath dist) :/root/python-future/dist python-future-builder /root/python-future/setup.sh $version $( basename $i )
12
+ docker run -ti -v $( realpath dist) :/root/python-future/dist $DOCKER_IMAGE /root/python-future/setup.sh $version $( basename $i )
11
13
done
12
14
13
15
python setup.py sdist
You can’t perform that action at this time.
0 commit comments