From 90ba0ad8e56fbd76299fe73b9c6e27016126e73a Mon Sep 17 00:00:00 2001 From: Stephan Seitz <stephan.seitz@fau.de> Date: Wed, 26 Feb 2020 14:57:41 +0100 Subject: [PATCH] Add deploy step --- .gitlab-ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f6ee425..ed734dd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,3 +11,17 @@ full: artifacts: paths: - 'src/pyronn_torch/pyronn_layers_cpp.so' + +deploy: + stage: test + image: i10git.cs.fau.de:5005/pycodegen/pycodegen/full + script: + - git submodule update --init --recursive + - python setup.py bdist + - python setup.py sdist + tags: + - docker + - cuda + artifacts: + paths: + - 'dist' -- GitLab