summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorPaul Sherwood <paul.sherwood@codethink.co.uk>2016-03-13 13:30:25 +0000
committerPaul Sherwood <paul.sherwood@codethink.co.uk>2016-03-13 14:12:14 +0000
commitef2cd4d4e3bb9e303a86171f7458d449467ed884 (patch)
tree8c39eff52ac6ee9674d6363166c6cf82375e30f5 /.gitlab-ci.yml
parent0a2240a5144f9dd4946b5c6c0a7bf7b029e70895 (diff)
downloadybd-ef2cd4d4e3bb9e303a86171f7458d449467ed884.tar.gz
Add installation test
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b9c2d04..916b634 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,7 +1,8 @@
image: devcurmudgeon/foo
+services:
+
before_script:
-- pip install fs
- sh ./install.sh
variables:
@@ -12,11 +13,16 @@ cache:
path: "$BASE"
stages:
+- installation
- cache_keys
- build
- test
- deploy
+check_installation:
+ stage: installation
+ script: "python setup.py install ; ./ybd.py"
+
check_cache_keys:
stage: cache_keys
script: "echo 'base: /src' > ./ybd.conf && ../ybd/ybd.py ci x86_64"