diff options
-rw-r--r-- | .gitlab-ci.yml | 16 |
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" + |