From ea75f3eff13013aed1dd40499c23f565fccff121 Mon Sep 17 00:00:00 2001 From: Bing Gong <b.gong@fz-juelich.de> Date: Sun, 15 Mar 2020 19:42:43 +0000 Subject: [PATCH] Delete gitlab-ci.yml --- gitlab-ci.yml | 68 --------------------------------------------------- 1 file changed, 68 deletions(-) delete mode 100644 gitlab-ci.yml diff --git a/gitlab-ci.yml b/gitlab-ci.yml deleted file mode 100644 index 2c5e5d3b..00000000 --- a/gitlab-ci.yml +++ /dev/null @@ -1,68 +0,0 @@ -stages: - - build - - test - - coverage - - deploy - - pages - - - -build: - tags: - - linux - stage: build - script: - - echo "Building" - - mkdir build - - touch build/info.txt - - -test: - tags: - - linux - stage: test - script: - - zypper --non-interactive install python3-pip - - zypper --non-interactive install python-devel - - pip install --upgrade pip - - pip install -r requirements.txt - - python3 test/test_DataMgr.py - - -docs: - tags: - - linux - stage: deploy - script: - - zypper --non-interactive install python3-pip - - zypper --non-interactive install python3-devel - - pip install sphinx - - pip install --upgrade pip - - pip install -r requirements.txt - - mkdir documents - - cd docs - - make html - - cp -r _build/html/* ../documents/. - - cd ../documents - - ls -l - artifacts: - name: docs - paths: - - documents/ - when: always - expire_in: 1 week - -pages: - tags: - - linux - stage: pages - script: - - mkdir -p public/docs - - cp -af documents/ public/docs/ - - ls public/docs/ - artifacts: - name: pages - when: always - paths: - - public/ - - documents/ \ No newline at end of file -- GitLab