diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2017-04-05 11:44:02 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-04-05 11:44:02 -0400 |
commit | 69837e5ca001d2a16dcb307c37a1f3ec91559e70 (patch) | |
tree | 7a8dff68f0404e3f037219c67ead7c95e7a1fb74 | |
parent | aa8969495134ec1792d26ada1a1f476e52100969 (diff) | |
download | python-coveragepy-69837e5ca001d2a16dcb307c37a1f3ec91559e70.tar.gz |
docker --rm to clean up unneeded containers
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | howto.txt | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -70,8 +70,8 @@ wheel: tox -c tox_wheels.ini $(ARGS) manylinux: - docker run -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/ci/manylinux.sh build - docker run -v `pwd`:/io quay.io/pypa/manylinux1_i686 /io/ci/manylinux.sh build + docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/ci/manylinux.sh build + docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_i686 /io/ci/manylinux.sh build kit_upload: twine upload dist/* @@ -49,7 +49,7 @@ - Source kit and wheels: - $ make kit wheel - Linux wheels: - - this takes an hour + - this can be fast (3min) or slow (1h45m). not sure why. - $ make manylinux - Windows kits - wait for over an hour for Appveyor to build kits. |