summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2016-06-16 13:58:31 +0200
committervarac <varacanero@zeromail.org>2016-06-16 16:24:12 +0200
commitf0dcbe381b4f791dcd695a10cbe8312526039b88 (patch)
tree1149f7e050184322815e0efc63a98911095b8802 /.gitlab-ci.yml
parent5a36ab3d0d8793326a9f2691f5e4bd5074778393 (diff)
disable rspec stage, add build stage
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml16
1 files changed, 12 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6b1a861d..fc7cc1dc 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -5,7 +5,8 @@ before_script:
stages:
- syntax
- - rspec
+# - rspec
+ - build
lint:
stage: syntax
@@ -32,7 +33,14 @@ catalog:
script:
- bundle exec rake catalog
-rspec:
- stage: rspec
+#rspec:
+# stage: rspec
+# script:
+# - bundle exec rake spec
+
+build:
+ stage: build
script:
- - bundle exec rake spec
+ - echo $CI_BUILD_REF_NAME
+ - ssh testbot@greyhound.leap.se -p 4422 "/usr/local/bin/platform_test/buildscripts/build-on-greyhound.sh $CI_BUILD_REF_NAME -x"
+