diff options
author | Jeff Widman <jeff@jeffwidman.com> | 2019-08-22 17:39:09 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-22 17:39:09 -0700 |
commit | 6e6d0cca5dbdf0a9ae3a032b6de08f9bbbf9606a (patch) | |
tree | d4a6cbb241286707874c570e74a6f453ec8f284c /build_integration.sh | |
parent | 98c005852e36fde0ef44a7b9c60a54f4686651af (diff) | |
download | kafka-python-6e6d0cca5dbdf0a9ae3a032b6de08f9bbbf9606a.tar.gz |
Bump integration tests to 0.10.2.2 and 0.11.0.3 (#1890)
Bump integration tests from Kafka:
- 0.10.2.1 --> 0.10.2.2
- 0.11.0.2 --> 0.11.0.3
Diffstat (limited to 'build_integration.sh')
-rwxr-xr-x | build_integration.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build_integration.sh b/build_integration.sh index c6df0b2..45522a3 100755 --- a/build_integration.sh +++ b/build_integration.sh @@ -1,12 +1,12 @@ #!/bin/bash -: ${ALL_RELEASES:="0.8.2.2 0.9.0.1 0.10.1.1 0.10.2.1 0.11.0.2 1.0.2 1.1.1 2.0.1"} +: ${ALL_RELEASES:="0.8.2.2 0.9.0.1 0.10.1.1 0.10.2.2 0.11.0.3 1.0.2 1.1.1 2.0.1"} : ${SCALA_VERSION:=2.11} : ${DIST_BASE_URL:=https://archive.apache.org/dist/kafka/} : ${KAFKA_SRC_GIT:=https://github.com/apache/kafka.git} # On travis CI, empty KAFKA_VERSION means skip integration tests -# so we don't try to get binaries +# so we don't try to get binaries # Otherwise it means test all official releases, so we get all of them! if [ -z "$KAFKA_VERSION" -a -z "$TRAVIS" ]; then KAFKA_VERSION=$ALL_RELEASES |