Skip to content
Snippets Groups Projects

Initial binary wheel setup

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

Files

@@ -79,12 +79,25 @@ run_unit_tests_coverage:
@@ -79,12 +79,25 @@ run_unit_tests_coverage:
package_files:
package_files:
stage: package
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:
artifacts:
expire_in: 1w
expire_in: 1w
paths:
paths:
- dist/*
- dist/*
script:
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:
package_docs:
stage: package
stage: package
Loading