diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..81307700 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,45 @@ +stages: + - dist + +sdist: + stage: dist + image: python:alpine + script: + - python setup.py sdist + artifacts: + paths: + - "dist/*" + +py35-wheel: + stage: dist + image: python:3.5-alpine + script: + - apk update && apk add g++ make cmake + - pip install --upgrade pip setuptools wheel + - python setup.py bdist_wheel + artifacts: + paths: + - "dist/*" + +py36-wheel: + stage: dist + image: python:3.6-alpine + script: + - apk update && apk add g++ make cmake + - pip install --upgrade pip setuptools wheel + - python setup.py bdist_wheel + artifacts: + paths: + - "dist/*" + +py37-wheel: + stage: dist + image: python:3.7-alpine + script: + - apk update && apk add g++ make cmake + - pip install --upgrade pip setuptools wheel + - python setup.py bdist_wheel + artifacts: + paths: + - "dist/*" +