Skip to content

Commit 05c9b5b

Browse files
Add kafka 2.6.0 and 2.7.0 to the test suite (#702)
* Add kafka 2.6.0 and 2.7.0 to the test suite * Remove v2.7.0 from the test suite
1 parent d11b5df commit 05c9b5b

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.circleci/config.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,33 @@ jobs:
198198
environment: *environment
199199
steps: *steps
200200

201+
kafka-260:
202+
working_directory: *working_directory
203+
environment:
204+
KAFKA_VERSION: "2.6.0"
205+
206+
# Need to skip nettest to avoid these kinds of errors:
207+
# --- FAIL: TestConn/nettest (17.56s)
208+
# --- FAIL: TestConn/nettest/PingPong (7.40s)
209+
# conntest.go:112: unexpected Read error: [7] Request Timed Out: the request exceeded the user-specified time limit in the request
210+
# conntest.go:118: mismatching value: got 77, want 78
211+
# conntest.go:118: mismatching value: got 78, want 79
212+
# ...
213+
#
214+
# TODO: Figure out why these are happening and fix them (they don't appear to be new).
215+
KAFKA_SKIP_NETTEST: "1"
216+
docker:
217+
- image: circleci/golang
218+
- image: wurstmeister/zookeeper
219+
ports:
220+
- 2181:2181
221+
- image: wurstmeister/kafka:2.13-2.6.0
222+
ports:
223+
- 9092:9092
224+
- 9093:9093
225+
environment: *environment
226+
steps: *steps
227+
201228
workflows:
202229
version: 2
203230
run:
@@ -211,3 +238,4 @@ workflows:
211238
- kafka-222
212239
- kafka-231
213240
- kafka-241
241+
- kafka-260

0 commit comments

Comments
 (0)