From 85d86a34644dec51c149594735b3e24be1ed6dc7 Mon Sep 17 00:00:00 2001 From: Douglas Thor Date: Tue, 8 Mar 2016 10:02:02 -0800 Subject: [PATCH] CI Updates + Renamed `build-exe` stage to `bundle` + Added creation and artifact of wheel. + renamed `verify-yml` stage to `tests` even though it's not used. --- .gitlab-ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5c7a7fb..881c86e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,23 +17,24 @@ pip-install: - pip install build-reqs/douglib-1.0.10-py3-none-any.whl # Run the test(s) -#verify-yml: +#tests: # stage: test # when: on_success # script: # - echo Not testing -build-exe: +bundle: stage: deploy when: on_success script: - python build_exe.py build - + - python setup.py sdist bdist_wheel artifacts: # only: # - tags paths: - build/exe.win-amd64-3.4/ + - dist/*.whl clean-up: stage: cleanup