From ce7f9af31c46050c6437ed86c6a00659bd6ce287 Mon Sep 17 00:00:00 2001 From: Isaak Lim Date: Wed, 21 Mar 2018 12:01:32 +0100 Subject: [PATCH] add deploy sdist CI job --- .gitlab-ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d054cd8..0e55779 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -230,6 +230,21 @@ deploy-2.7-macos: paths: - release/*.whl +deploy-sdist: + stage: + deploy + tags: + - Linux + variables: + GIT_SUBMODULE_STRATEGY: recursive + script: + - virtualenv --clear -p python3.5 . + - source bin/activate + - python setup.py sdist --dist-dir release + artifacts: + paths: + - release/ + deploy-documentation: stage: deploy -- GitLab