Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add manylinux to CI wheels build #406

Merged
merged 37 commits into from
May 9, 2020
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
69c298e
Add manylinux build.
bwoodsend May 6, 2020
0f6afcc
More to trigger action build than to make a change
bwoodsend May 6, 2020
06d4d80
Ubuntu appears to be using an old python
bwoodsend May 6, 2020
a05a3a6
Think this was the issue
bwoodsend May 6, 2020
ef39547
ujson version not being passed on
bwoodsend May 6, 2020
4bc9f1b
Try this to get version instead
bwoodsend May 6, 2020
6eaa240
Add default of for manylinux script. Use that in CI script.
bwoodsend May 6, 2020
3e5937c
Add and switch to new docker build script.
bwoodsend May 6, 2020
f09dc66
Update deploy-macos-windows.yml
bwoodsend May 6, 2020
4e3f8c9
Update deploy-macos-windows.yml
bwoodsend May 6, 2020
e0a6fcc
Update deploy-macos-windows.yml
bwoodsend May 6, 2020
e9b2ec1
Update deploy-macos-windows.yml
bwoodsend May 6, 2020
bb0a528
Update deploy-macos-windows.yml
bwoodsend May 6, 2020
a50a148
Update build-wheels.sh
bwoodsend May 6, 2020
5fc87f9
Clear up a bit.
bwoodsend May 6, 2020
4798669
Knew I'd forget to update the name somewhere
bwoodsend May 6, 2020
68cd7ca
Change this back to what it was before I fiddled with it.
bwoodsend May 6, 2020
430538a
Update .github/workflows/deploy-macos-windows.yml
bwoodsend May 8, 2020
96a76ff
Update .github/workflows/deploy-macos-windows.yml
bwoodsend May 8, 2020
e5d225a
Update .github/workflows/deploy-macos-windows.yml
bwoodsend May 8, 2020
ab608ba
Update .github/workflows/deploy-macos-windows.yml
bwoodsend May 8, 2020
5118d46
Update .github/workflows/deploy-macos-windows.yml
bwoodsend May 8, 2020
6cfcb29
Update scripts/build-manylinux-wheels.sh
bwoodsend May 8, 2020
7b57fb7
Update scripts/build-manylinux-wheels.sh
bwoodsend May 8, 2020
bb0f8ee
Update scripts/build-manylinux-wheels.sh
bwoodsend May 8, 2020
a6be591
Update scripts/build-manylinux-wheels.sh
bwoodsend May 8, 2020
68c6271
Fix line endings back to LF
bwoodsend May 8, 2020
4a411e0
Rename wheel building yml to appropriate name.
bwoodsend May 8, 2020
cefb530
Update scripts/build-manylinux-wheels.sh
bwoodsend May 8, 2020
3ae3849
Update scripts/build-manylinux-wheels.sh
bwoodsend May 8, 2020
be21532
Try without setting permissions in the workflow.
bwoodsend May 8, 2020
971839b
change file permissions and make build-manylinux-wheels.sh executable
bwoodsend May 8, 2020
ac0a8b4
Remove sudo in comment.
bwoodsend May 8, 2020
5248177
Add Cleanup of temp-wheels before populating with new wheels. A few w…
bwoodsend May 8, 2020
d267ec6
`rm` doesn't work with wildcards in linux1
bwoodsend May 8, 2020
7d3a5eb
Linux1 also doesn't handle zero length loops properly
bwoodsend May 8, 2020
4baa204
Disable fail-fast
bwoodsend May 9, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions scripts/build-manylinux-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ mkdir -p /io/pip-cache
mkdir -p /io/temp-wheels

# Clean out any old existing wheels.
for whl in /io/temp-wheels/*.whl; do
rm "$whl"
done
find /io/temp-wheels/ -type f -delete
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alternatively, rm -rf /io/temp-wheels before the mkdir. Either is fine.


for PYBIN in /opt/python/cp3[5678]*/bin; do
"${PYBIN}/pip" install -q -U setuptools wheel pytest --cache-dir /io/pip-cache
Expand Down