From 267b2dba9adff99593aa5ce4eae4ef90ef933a91 Mon Sep 17 00:00:00 2001 From: Tamas Gal <tgal@km3net.de> Date: Thu, 8 Nov 2018 15:14:09 +0100 Subject: [PATCH] Add .gitlab-ci.yml --- .gitlab-ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..d9982b8 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +before_script: + - apt-get update -qq && apt-get install -y -qq libhdf5-dev + - pip install -U pip setuptools wheel + - pip install . + +test: + image: python:3.7.0 + script: + - echo narf + +pages: + image: python:3.7.0 + script: + - cd docs && make html + - mv _build/html/ ../public/ + artifacts: + paths: + - public -- GitLab