Skip to content

Commit 9f3b52a

Browse files
authored
Merge pull request pypa#190 from trishankatdatadog/trishankatdatadog/wheel-0.30.0-to-0.31.0
Correctly set PLATFORM env var in /build.sh.
2 parents 0566338 + 3457314 commit 9f3b52a

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ matrix:
2323
- env: PLATFORM="x86_64"
2424

2525
script:
26-
- PLATFORM=$(uname -m) TRAVIS_COMMIT=$TRAVIS_COMMIT ./build.sh
26+
- PLATFORM=$PLATFORM TRAVIS_COMMIT=$TRAVIS_COMMIT ./build.sh
2727

2828

2929
deploy:

README.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,22 @@ are also encountered in the wild. Other less common or virtually
8181
unheard of flag combinations (such as ``--with-pydebug`` (``d``) and
8282
``--without-pymalloc`` (absence of ``m``)) are not provided.
8383

84+
Building Docker images
85+
----------------------
86+
87+
Due to the age of CentOS 5, its version of ``wget`` is unable to fetch
88+
OpenSSL and curl source tarballs. Modern versions of these are needed in
89+
order to fetch the remaining sources.
90+
91+
To build the Docker images, you will need to fetch the tarballs to
92+
``docker/sources/`` prior to building. This can be done with the
93+
provided prefetch script, after which you can proceed with building.
94+
Please run the following command from the current (root) directory:
95+
96+
```bash
97+
$ PLATFORM=$(uname -m) TRAVIS_COMMIT=latest ./build.sh
98+
```
99+
84100
Example
85101
-------
86102
An example project which builds 32- and 64-bit wheels for each Python interpreter

0 commit comments

Comments
 (0)