forked from logstash-plugins/logstash-output-kafka
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
14 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,21 +1,13 @@ | ||
--- | ||
sudo: false | ||
language: ruby | ||
cache: bundler | ||
rvm: | ||
- jruby-19mode | ||
- jruby-1.7.25 | ||
before_install: | ||
- curl -s -o kafka.tgz http://ftp.wayne.edu/apache/kafka/0.9.0.1/kafka_2.11-0.9.0.1.tgz | ||
- mkdir kafka && tar xzf kafka.tgz -C kafka --strip-components 1 | ||
- kafka/bin/zookeeper-server-start.sh kafka/config/zookeeper.properties & | ||
- kafka/bin/kafka-server-start.sh kafka/config/server.properties & | ||
- sleep 3 | ||
- kafka/bin/kafka-topics.sh --create --partitions 1 --replication-factor 1 --topic topic1 --zookeeper localhost:2181 | ||
- kafka/bin/kafka-topics.sh --create --partitions 2 --replication-factor 1 --topic topic2 --zookeeper localhost:2181 | ||
- kafka/bin/kafka-topics.sh --create --partitions 1 --replication-factor 1 --topic gzip_topic --zookeeper localhost:2181 | ||
- kafka/bin/kafka-topics.sh --create --partitions 1 --replication-factor 1 --topic snappy_topic --zookeeper localhost:2181 | ||
- kafka/bin/kafka-topics.sh --create --partitions 1 --replication-factor 1 --topic lz4_topic --zookeeper localhost:2181 | ||
- kafka/bin/kafka-topics.sh --create --partitions 3 --replication-factor 1 --topic topic3 --zookeeper localhost:2181 | ||
- git clone -b feature/event_interface https://github.com/elastic/logstash | ||
before_script: | ||
- bundle exec rake vendor | ||
- bundle exec rake install_jars | ||
- bundle exec rake vendor | ||
- bundle exec rake install_jars | ||
script: bundle exec rspec && bundle exec rspec --tag integration | ||
jdk: oraclejdk8 |
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,2 +1,8 @@ | ||
source 'https://rubygems.org' | ||
gemspec | ||
gemspec | ||
gem "logstash-core", :path => "./logstash/logstash-core" | ||
gem "logstash-core-plugin-api", :path => "./logstash/logstash-core-plugin-api" | ||
gem "logstash-core-event-java", :path => "./logstash/logstash-core-event-java" | ||
gem "logstash-devutils", :github => "elastic/logstash-devutils", :branch => "feature/plugin-api-2_0" | ||
gem "logstash-codec-plain", :github => "logstash-plugins/logstash-codec-plain", :branch => "feature/plugin-api-2_0" | ||
gem "logstash-codec-json", :github => "logstash-plugins/logstash-codec-json", :branch => "feature/plugin-api-2_0" |
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