-
Notifications
You must be signed in to change notification settings - Fork 239
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1295 from wbarnha/extend-gitlab-qemu
Update GitLab support
- Loading branch information
Showing
5 changed files
with
57 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
linux: | ||
image: python:3.8 | ||
# make a docker daemon available for cibuildwheel to use | ||
services: | ||
- name: docker:dind | ||
entrypoint: ["env", "-u", "DOCKER_HOST"] | ||
command: ["dockerd-entrypoint.sh"] | ||
variables: | ||
DOCKER_HOST: tcp://docker:2375/ | ||
DOCKER_DRIVER: overlay2 | ||
# See https://github.com/docker-library/docker/pull/166 | ||
DOCKER_TLS_CERTDIR: "" | ||
script: | ||
- curl -sSL https://get.docker.com/ | sh | ||
# Warning: This is extremely slow, be careful with how many wheels you build | ||
- docker run --rm --privileged multiarch/qemu-user-static --reset -p yes | ||
- python -m pip install cibuildwheel==2.10.2 | ||
# Assuming your CI runner's default architecture is x86_64... | ||
- cibuildwheel --output-dir wheelhouse --platform linux --archs aarch64 | ||
artifacts: | ||
paths: | ||
- wheelhouse/ |