Skip to content

Commit 7bd3165

Browse files
committed
[FlINK-36332] Default to okhttp if client not specified
1 parent 6798c4a commit 7bd3165

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,8 @@ jobs:
197197
export SHELL=/bin/bash
198198
export DOCKER_BUILDKIT=1
199199
eval $(minikube -p minikube docker-env)
200-
docker build --progress=plain --no-cache -f ./Dockerfile -t flink-kubernetes-operator:ci-${{ matrix.http-client }}-latest --progress plain --build-arg HTTP_CLIENT=${{ matrix.http-client }} .
200+
HTTP_CLIENT=${{ matrix.http-client }}
201+
docker build --progress=plain --no-cache -f ./Dockerfile -t flink-kubernetes-operator:ci-${{ matrix.http-client }}-latest --progress plain --build-arg HTTP_CLIENT="${HTTP_CLIENT:-okhttp}" .
201202
docker images
202203
- name: Start the operator
203204
run: |

0 commit comments

Comments
 (0)