diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..fc7cc1dc --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,46 @@ +before_script: + - ruby -v + - bundle install --path vendor/bundle --jobs $(nproc) "${FLAGS[@]}" + - git submodule update --init + +stages: + - syntax +# - rspec + - build + +lint: + stage: syntax + script: + - bundle exec rake lint + +syntax: + stage: syntax + script: + - bundle exec rake syntax + +validate: + stage: syntax + script: + - bundle exec rake validate + +templates: + stage: syntax + script: + - bundle exec rake templates + +catalog: + stage: syntax + script: + - bundle exec rake catalog + +#rspec: +# stage: rspec +# script: +# - bundle exec rake spec + +build: + stage: build + script: + - 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" + |