# HG changeset patch # User Thierry Florac # Date 1560353977 -7200 # Node ID 14eaa9024bb44354c9a7ec4f78672dc7dfd1c17d # Parent d33de925e83d69025626f0c2fb924583053e45e2 Testing Gitlab-CI stages... diff -r d33de925e83d -r 14eaa9024bb4 .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: