Skip to content
Snippets Groups Projects

Initial binary wheel setup

3 files
+ 25
2
Compare changes
  • Side-by-side
  • Inline

Files

@@ -79,12 +79,25 @@ run_unit_tests_coverage:
package_files:
stage: package
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: ""
artifacts:
expire_in: 1w
paths:
- dist/*
script:
- tox -e build-ci-linux
- curl -sSL https://get.docker.com/ | sh
- python -m pip install cibuildwheel==2.13.1 cookiecutter
- cibuildwheel --platform linux --output-dir dist
package_docs:
stage: package
Loading