Skip to content

Commit

Permalink
switch from Travis to Jenkins CI
Browse files Browse the repository at this point in the history
replace .travis.yml by custom ci.sh script
  • Loading branch information
lslezak committed Apr 17, 2015
1 parent f6f0616 commit f0246cd
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .coveralls.yml
@@ -1 +1 @@
service_name: travis-ci
service_name: jenkins-ci
5 changes: 5 additions & 0 deletions .rubocop.yml
@@ -1,3 +1,8 @@
AllCops:
Include:
Exclude:
- ".vendor/**/*"

# use the shared Yast defaults
inherit_from:
/usr/share/YaST2/data/devtools/data/rubocop_yast_style.yml
Expand Down
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

18 changes: 18 additions & 0 deletions ci.sh
@@ -0,0 +1,18 @@
#! /bin/sh
#
# This script is executed in Jenkins CI to run some additional checks.
#

set -xe

if ! [ -d .vendor ]; then
bundle install --path .vendor/bundle
fi

bundle exec rubocop
bundle exec yardoc

bundle exec rake check:pot
rm _MISSING_TEXTDOMAIN_*

COVERAGE=1 bundle exec rake test:unit

0 comments on commit f0246cd

Please sign in to comment.