Testing Gitlab-CI stages...
authorThierry Florac <tflorac@ulthar.net>
Wed, 12 Jun 2019 17:39:37 +0200
changeset 359 14eaa9024bb4
parent 358 d33de925e83d
child 360 9ab2495cb022
Testing Gitlab-CI stages...
.gitlab-ci.yml
--- a/.gitlab-ci.yml	Wed Jun 12 17:22:37 2019 +0200
+++ b/.gitlab-ci.yml	Wed Jun 12 17:39:37 2019 +0200
@@ -1,31 +1,18 @@
 image: python:3.5
 
-cache:
-    key: PYRAMID_CACHE
-    paths:
-        - /var/local/env/pyams/eggs/*
-
 stages:
     - build
-    - test
     - quality
 
 before_script:
     - export http_proxy=http://172.17.0.1:3128/
     - export https_proxy=http://172.17.0.1:3128/
-    - python3.5 bootstrap.py --buildout-version=2.12.0
 
-build:
+test:
     stage: build
     script:
+        - python3.5 bootstrap.py --buildout-version=2.12.0
         - ./bin/buildout
-    artifacts:
-        paths:
-            - ./bin/
-
-test:
-    stage: test
-    script:
         - ./bin/test
 
 quality: