From c6eac1e27849d61ac2af602f531edfec61a5ffcf Mon Sep 17 00:00:00 2001 From: Stephan Seitz <stephan.seitz@fau.de> Date: Wed, 26 Feb 2020 14:16:50 +0100 Subject: [PATCH] Add .gitlab-ci.yml --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..f6ee425 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,13 @@ +full: + stage: test + image: i10git.cs.fau.de:5005/pycodegen/pycodegen/full + script: + - git submodule update --init --recursive + - python -m pip install -e . + - python setup.py test + tags: + - docker + - cuda + artifacts: + paths: + - 'src/pyronn_torch/pyronn_layers_cpp.so' -- GitLab