mirror of https://github.com/apache/kafka.git
MINOR: Add 3.7.0 to system tests (#15436)
As per the release instructions, this patch bumps the versions in the associated files here as part of the 3.7 release
This commit is contained in:
parent
1c9f360f4a
commit
3075a3f144
|
@ -142,6 +142,7 @@ versions += [
|
|||
kafka_34: "3.4.1",
|
||||
kafka_35: "3.5.2",
|
||||
kafka_36: "3.6.1",
|
||||
kafka_37: "3.7.0",
|
||||
lz4: "1.8.0",
|
||||
mavenArtifact: "3.9.6",
|
||||
metrics: "2.2.0",
|
||||
|
@ -234,6 +235,7 @@ libs += [
|
|||
kafkaStreams_34: "org.apache.kafka:kafka-streams:$versions.kafka_34",
|
||||
kafkaStreams_35: "org.apache.kafka:kafka-streams:$versions.kafka_35",
|
||||
kafkaStreams_36: "org.apache.kafka:kafka-streams:$versions.kafka_36",
|
||||
kafkaStreams_37: "org.apache.kafka:kafka-streams:$versions.kafka_37",
|
||||
log4j: "ch.qos.reload4j:reload4j:$versions.reload4j",
|
||||
lz4: "org.lz4:lz4-java:$versions.lz4",
|
||||
metrics: "com.yammer.metrics:metrics-core:$versions.metrics",
|
||||
|
|
|
@ -70,6 +70,7 @@ RUN mkdir -p "/opt/kafka-3.3.2" && chmod a+rw /opt/kafka-3.3.2 && curl -s "$KAFK
|
|||
RUN mkdir -p "/opt/kafka-3.4.1" && chmod a+rw /opt/kafka-3.4.1 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.4.1.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.4.1"
|
||||
RUN mkdir -p "/opt/kafka-3.5.2" && chmod a+rw /opt/kafka-3.5.2 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.5.2.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.5.2"
|
||||
RUN mkdir -p "/opt/kafka-3.6.1" && chmod a+rw /opt/kafka-3.6.1 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.6.1.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.6.1"
|
||||
RUN mkdir -p "/opt/kafka-3.7.0" && chmod a+rw /opt/kafka-3.7.0 && curl -s "$KAFKA_MIRROR/kafka_2.12-3.7.0.tgz" | tar xz --strip-components=1 -C "/opt/kafka-3.7.0"
|
||||
|
||||
|
||||
# Streams test dependencies
|
||||
|
@ -95,6 +96,7 @@ RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.3.2-test.jar" -o /opt/kafka-3.3.2/lib
|
|||
RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.4.1-test.jar" -o /opt/kafka-3.4.1/libs/kafka-streams-3.4.1-test.jar
|
||||
RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.5.2-test.jar" -o /opt/kafka-3.5.2/libs/kafka-streams-3.5.2-test.jar
|
||||
RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.6.1-test.jar" -o /opt/kafka-3.6.1/libs/kafka-streams-3.6.1-test.jar
|
||||
RUN curl -s "$KAFKA_MIRROR/kafka-streams-3.7.0-test.jar" -o /opt/kafka-3.7.0/libs/kafka-streams-3.7.0-test.jar
|
||||
|
||||
# The version of Kibosh to use for testing.
|
||||
# If you update this, also update vagrant/base.sh
|
||||
|
|
|
@ -162,6 +162,8 @@ get_kafka 3.5.2 2.12
|
|||
chmod a+rw /opt/kafka-3.5.2
|
||||
get_kafka 3.6.1 2.12
|
||||
chmod a+rw /opt/kafka-3.6.1
|
||||
get_kafka 3.7.0 2.12
|
||||
chmod a+rw /opt/kafka-3.7.0
|
||||
|
||||
|
||||
# For EC2 nodes, we want to use /mnt, which should have the local disk. On local
|
||||
|
|
Loading…
Reference in New Issue