mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
19 lines
454 B
Bash
Executable file
19 lines
454 B
Bash
Executable file
#!/bin/bash
|
|
set -ev
|
|
|
|
echo "Running sinatra tests..."
|
|
bundle exec rake
|
|
|
|
echo "Running sinatra-contrib tests..."
|
|
export BUILDIR=$TRAVIS_BUILD_DIR/sinatra-contrib
|
|
export BUNDLE_GEMFILE=$BUILDIR/Gemfile
|
|
cd $BUILDIR
|
|
bundle install --jobs=3 --retry=3
|
|
bundle exec rake
|
|
|
|
echo "Running rack-protection tests..."
|
|
export BUILDIR=$TRAVIS_BUILD_DIR/rack-protection
|
|
export BUNDLE_GEMFILE=$BUILDIR/Gemfile
|
|
cd $BUILDIR
|
|
bundle install --jobs=3 --retry=3
|
|
bundle exec rake
|