File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
table-topic-solutions/playground/tools/kafka-client Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -25,10 +25,17 @@ jobs:
2525 - name : Set up Docker Buildx
2626 uses : docker/setup-buildx-action@v3
2727
28+ - name : Cache Docker layers
29+ uses : actions/cache@v4
30+ with :
31+ path : /tmp/.buildx-cache
32+ key : ${{ runner.os }}-buildx-${{ github.sha }}
33+ restore-keys : |
34+ ${{ runner.os }}-buildx-
35+
2836 - name : Run all scenario tests
2937 working-directory : table-topic-solutions/playground
3038 run : just test-all
31- timeout-minutes : 900
3239
3340 - name : Cleanup
3441 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