-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to use Java Event set and get
Update version dependency for zabbix_protocol ruby gem Update to do testing with Travis CI Disabling Docker testing for now TravisCI and JRuby are not playing nice. Filed a ticket at: travis-ci/travis-rubies#18 Fixes #15
- Loading branch information
Showing
5 changed files
with
39 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,18 @@ | ||
--- | ||
#sudo: required | ||
sudo: false | ||
jdk: oraclejdk8 | ||
env: | ||
- INTEGRATION=false | ||
# - INTEGRATION=true | ||
language: ruby | ||
cache: bundler | ||
cache: | ||
bundler: true | ||
#services: | ||
# - docker | ||
rvm: | ||
- jruby-1.7.23 | ||
script: | ||
- bundle exec rspec spec | ||
- jruby-1.7.25 | ||
#before_install: | ||
# - docker pull untergeek/logstash_output_zabbix_rspec:latest | ||
# - docker run -i --name="logstash_zabbix_rspec" -t -d -p 10051:10051 untergeek/logstash_output_zabbix_rspec:latest run | ||
script: "./travis-run.sh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
set -ex | ||
|
||
if [[ "$INTEGRATION" != "true" ]]; then | ||
bundle exec rspec -fd spec | ||
elif [[ "$INTEGRATION" == "true" ]]; then | ||
bundle exec rspec -fd spec -t integration | ||
fi |