Skip to content

Commit 0f284ea

Browse files
committed
[FlINK-36332] Default to okhttp if client not specified
1 parent 0a81bdd commit 0f284ea

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
@@ -204,7 +204,8 @@ jobs:
204204
export SHELL=/bin/bash
205205
export DOCKER_BUILDKIT=1
206206
eval $(minikube -p minikube docker-env)
207-
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 }} .
207+
HTTP_CLIENT=${{ matrix.http-client }}
208+
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}" .
208209
docker images
209210
- name: Start the operator
210211
run: |

0 commit comments

Comments
 (0)