File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -267,6 +267,38 @@ jobs:
267267 - run : bundle install --path vendor/bundle
268268 - run : bundle exec rspec --profile --tag functional spec/functional
269269
270+ kafka-2.5 :
271+ docker :
272+ - image : circleci/ruby:2.5.1-node
273+ environment :
274+ LOG_LEVEL : DEBUG
275+ - image : wurstmeister/zookeeper
276+ - image : wurstmeister/kafka:2.12-2.5.0
277+ environment :
278+ KAFKA_ADVERTISED_HOST_NAME : localhost
279+ KAFKA_ADVERTISED_PORT : 9092
280+ KAFKA_PORT : 9092
281+ KAFKA_ZOOKEEPER_CONNECT : localhost:2181
282+ KAFKA_DELETE_TOPIC_ENABLE : true
283+ - image : wurstmeister/kafka:2.12-2.5.0
284+ environment :
285+ KAFKA_ADVERTISED_HOST_NAME : localhost
286+ KAFKA_ADVERTISED_PORT : 9093
287+ KAFKA_PORT : 9093
288+ KAFKA_ZOOKEEPER_CONNECT : localhost:2181
289+ KAFKA_DELETE_TOPIC_ENABLE : true
290+ - image : wurstmeister/kafka:2.12-2.5.0
291+ environment :
292+ KAFKA_ADVERTISED_HOST_NAME : localhost
293+ KAFKA_ADVERTISED_PORT : 9094
294+ KAFKA_PORT : 9094
295+ KAFKA_ZOOKEEPER_CONNECT : localhost:2181
296+ KAFKA_DELETE_TOPIC_ENABLE : true
297+ steps :
298+ - checkout
299+ - run : bundle install --path vendor/bundle
300+ - run : bundle exec rspec --profile --tag functional spec/functional
301+
270302workflows :
271303 version : 2
272304 test :
@@ -280,3 +312,4 @@ workflows:
280312 - kafka-2.2
281313 - kafka-2.3
282314 - kafka-2.4
315+ - kafka-2.5
You can’t perform that action at this time.
0 commit comments