Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[KIP-848] Make Kafka integration test run with new protocol too #2212

Merged
merged 9 commits into from May 7, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion test/docker/kraft/Dockerfile
Expand Up @@ -4,7 +4,10 @@ RUN apt update
RUN apt install -y git curl
RUN apt install -y openjdk-17-jdk

RUN git clone https://github.com/apache/kafka.git
# Trunk at 2024-04-10, replace with 3.8.0 tag when available
RUN git clone --single-branch --branch trunk \
https://github.com/apache/kafka.git && \
(cd /kafka && git checkout f6c9feea76d01a46319b0ca602d70aa855057b07)
anchitj marked this conversation as resolved.
Show resolved Hide resolved

RUN cd kafka && ./gradlew jar --info -x test -x checkstyleMain \
-x checkstyleTest -x spotbugsMain -xspotbugsTest
Expand Down