mirror of
https://github.com/elastic/logstash.git
synced 2025-04-25 07:07:54 -04:00
parent
2d3a2c28c7
commit
c00d338ff0
1 changed files with 9 additions and 3 deletions
12
.travis.yml
12
.travis.yml
|
@ -9,7 +9,9 @@ rvm:
|
||||||
jdk:
|
jdk:
|
||||||
- oraclejdk8
|
- oraclejdk8
|
||||||
env:
|
env:
|
||||||
|
- INTEGRATION=false
|
||||||
- INTEGRATION=true
|
- INTEGRATION=true
|
||||||
|
- INTEGRATION=false FEATURE_FLAG=persistent_queues
|
||||||
- INTEGRATION=true FEATURE_FLAG=persistent_queues
|
- INTEGRATION=true FEATURE_FLAG=persistent_queues
|
||||||
before_install:
|
before_install:
|
||||||
# Force bundler 1.12.5 because version 1.13 has issues, see https://github.com/fastlane/fastlane/issues/6065#issuecomment-246044617
|
# Force bundler 1.12.5 because version 1.13 has issues, see https://github.com/fastlane/fastlane/issues/6065#issuecomment-246044617
|
||||||
|
@ -17,9 +19,13 @@ before_install:
|
||||||
- gem install bundler -v 1.12.5 --no-rdoc --no-ri --no-document --quiet
|
- gem install bundler -v 1.12.5 --no-rdoc --no-ri --no-document --quiet
|
||||||
install:
|
install:
|
||||||
- rake test:install-core
|
- rake test:install-core
|
||||||
- ci/travis_integration_install.sh
|
|
||||||
before_script:
|
before_script:
|
||||||
- echo "--order rand" > .rspec
|
- echo "--order rand" > .rspec
|
||||||
script:
|
script:
|
||||||
- rake test:core
|
- |+
|
||||||
- ci/travis_integration_run.sh
|
if [ "$INTEGRATION" == "true" ]; then
|
||||||
|
ci/travis_integration_install.sh
|
||||||
|
ci/travis_integration_run.sh;
|
||||||
|
else
|
||||||
|
rake test:core
|
||||||
|
fi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue