You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
121 lines
4.1 KiB
121 lines
4.1 KiB
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2015 the OpenProject Foundation (OPF)
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
# Travis configuration based on the respective OpenProject core configuration.
|
|
# Everything save for the matrix section and additional `before_install`
|
|
# instructions is copied and pasted from the core.
|
|
|
|
language: ruby
|
|
|
|
rvm:
|
|
- 2.2.5
|
|
|
|
sudo: false
|
|
|
|
cache:
|
|
bundler: true
|
|
directories:
|
|
- frontend/node_modules
|
|
- frontend/bower_components
|
|
|
|
|
|
bundler_args: --without development production docker
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- dev
|
|
- /^(stable|release)\/.*$/
|
|
|
|
env:
|
|
global:
|
|
- CI=true
|
|
- RAILS_ENV=test
|
|
- COVERAGE=true
|
|
|
|
matrix:
|
|
- "TEST_SUITE=plugins:spec DB=mysql"
|
|
- "TEST_SUITE=plugins:cucumber DB=mysql"
|
|
|
|
- "TEST_SUITE=npm"
|
|
|
|
- "TEST_SUITE=spec_legacy DB=mysql"
|
|
- "TEST_SUITE=cucumber DB=mysql GROUP_SIZE=2 GROUP=1"
|
|
- "TEST_SUITE=cucumber DB=mysql GROUP_SIZE=2 GROUP=2"
|
|
- "TEST_SUITE=specs DB=mysql GROUP_SIZE=3 GROUP=1"
|
|
- "TEST_SUITE=specs DB=mysql GROUP_SIZE=3 GROUP=2"
|
|
- "TEST_SUITE=specs DB=mysql GROUP_SIZE=3 GROUP=3"
|
|
- "TEST_SUITE=features DB=mysql GROUP_SIZE=3 GROUP=1"
|
|
- "TEST_SUITE=features DB=mysql GROUP_SIZE=3 GROUP=2"
|
|
- "TEST_SUITE=features DB=mysql GROUP_SIZE=3 GROUP=3"
|
|
|
|
before_install:
|
|
# Custom plugin instructions follow.
|
|
|
|
# Move the plugin into a subfolder. The plugin-provided Gemfile.plugins
|
|
# must refer to this folder.
|
|
- mkdir -p plugins/this
|
|
- echo `ls -a | tail -n+3 | grep -v plugins` plugins/this/ | xargs mv
|
|
|
|
# Get OpenProject.
|
|
# Doing the fetch detour as you cannot clone into the current directory.
|
|
- git init
|
|
- git remote add openproject https://github.com/opf/openproject.git
|
|
- git fetch --depth=1 openproject
|
|
- git checkout openproject/$TRAVIS_BRANCH
|
|
|
|
# End of custom plugin instructions.
|
|
- "rvm @default,@global do gem uninstall bundler -a -x"
|
|
- gem install bundler -v 1.12.5
|
|
- echo `bundle -v`
|
|
- "echo `firefox -v`"
|
|
- "export DISPLAY=:99.0"
|
|
- "/sbin/start-stop-daemon --start -v --pidfile ./tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1920x1080x16"
|
|
- "echo `xdpyinfo -display :99 | grep 'dimensions' | awk '{ print $2 }'`"
|
|
# Install Node LTS Boron (6.9.1)
|
|
- nvm install 6.9.1
|
|
# We need npm 4.0 for a bugfix in cross-platform shrinkwrap
|
|
# https://github.com/npm/npm/issues/14042
|
|
- npm install npm@4.0
|
|
- travis_retry npm install
|
|
|
|
# We need phantomjs 2.0 to get tests passing
|
|
- mkdir travis-phantomjs
|
|
- wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -O $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2
|
|
- tar -xvf $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -C $PWD/travis-phantomjs
|
|
- export PATH=$PWD/travis-phantomjs:$PATH
|
|
|
|
before_script:
|
|
- sh script/ci_setup.sh $DB
|
|
|
|
script:
|
|
- sh script/ci_runner.sh
|
|
|
|
addons:
|
|
firefox: "45.0esr"
|
|
postgresql: "9.3" |