File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed
table-topic-solutions/playground/tools/kafka-client Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -22,13 +22,27 @@ jobs:
2222 - name : Install Just
2323 uses : extractions/setup-just@v2
2424
25+ - name : Set up JDK 17
26+ uses : actions/setup-java@v4
27+ with :
28+ distribution : ' temurin'
29+ java-version : ' 17'
30+ cache : ' maven'
31+
2532 - name : Set up Docker Buildx
2633 uses : docker/setup-buildx-action@v3
2734
35+ - name : Cache Docker layers
36+ uses : actions/cache@v4
37+ with :
38+ path : /tmp/.buildx-cache
39+ key : ${{ runner.os }}-buildx-${{ github.sha }}
40+ restore-keys : |
41+ ${{ runner.os }}-buildx-
42+
2843 - name : Run all scenario tests
2944 working-directory : table-topic-solutions/playground
3045 run : just test-all
31- timeout-minutes : 900
3246
3347 - name : Cleanup
3448 if : always()
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ USER root
66RUN microdnf update -y && microdnf install -y \
77 maven \
88 gcc-c++ \
9- python3-devel && \
10- microdnf clean all
9+ python3-devel \
10+ && microdnf clean all
1111
1212RUN pip3 install --user grpcio-tools
1313
You can’t perform that action at this time.
0 commit comments