Add /etc/init.d script for xvfb. Copy it into place before trying to use it on travis.
This commit is contained in:
parent
79b4d0ef57
commit
2eca2c0f40
2 changed files with 30 additions and 1 deletions
|
|
@ -3,12 +3,13 @@ rvm:
|
|||
- ree
|
||||
|
||||
before_script:
|
||||
- "sudo cp config/ci/xvfb /etc/init.d/xvfb"
|
||||
- "sh -e /etc/init.d/xvfb start"
|
||||
- "sass --update public/stylesheets/sass/:public/stylesheets/"
|
||||
- "cp config/database.yml.example config/database.yml"
|
||||
- "rake db:create"
|
||||
- "rake db:schema:load"
|
||||
- "rspec spec --tag fixture"
|
||||
- "sh -e /etc/init.d/xvfb start"
|
||||
script: "bundle exec rake travis"
|
||||
env: "TRAVIS=true"
|
||||
notifications:
|
||||
|
|
|
|||
28
config/ci/xvfb
Normal file
28
config/ci/xvfb
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# Copyright (c) 2010, Diaspora Inc. This file is
|
||||
# licensed under the Affero General Public License version 3 or later. See
|
||||
# the COPYRIGHT file.
|
||||
|
||||
XVFB=/usr/bin/Xvfb
|
||||
XVFBARGS=":99 -ac -screen 0 1024x768x16"
|
||||
PIDFILE=/root/cucumber_xvfb_99.pid
|
||||
case "$1" in
|
||||
start)
|
||||
echo -n "Starting virtual X frame buffer: Xvfb"
|
||||
/sbin/start-stop-daemon --start --quiet --pidfile $PIDFILE --make-pidfile --background --exec $XVFB -- $XVFBARGS
|
||||
echo "."
|
||||
;;
|
||||
stop)
|
||||
echo -n "Stopping virtual X frame buffer: Xvfb"
|
||||
/sbin/start-stop-daemon --stop --quiet --pidfile $PIDFILE
|
||||
rm -f $PIDFILE
|
||||
echo "."
|
||||
;;
|
||||
restart)
|
||||
$0 stop
|
||||
$0 start
|
||||
;;
|
||||
*)
|
||||
echo "Usage: /etc/init.d/xvfb {start|stop|restart}"
|
||||
exit 1
|
||||
esac
|
||||
exit 0
|
||||
Loading…
Reference in a new issue