We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 315a8e8 commit 701d205Copy full SHA for 701d205
.ci/docker/build.sh
@@ -358,10 +358,15 @@ if [[ "$image" == *cuda* && ${OS} == "ubuntu" ]]; then
358
fi
359
360
361
+DOCKER_PROGRESS="--progress=plain"
362
+if [[ "${DOCKER_BUILDKIT}" == 0 ]]; then
363
+ DOCKER_PROGRESS=""
364
+fi
365
+
366
# Build image
367
DOCKER_BUILDKIT=1 docker build \
368
--no-cache \
- --progress=plain \
369
+ ${DOCKER_PROGRESS} \
370
--build-arg "BUILD_ENVIRONMENT=${image}" \
371
--build-arg "PROTOBUF=${PROTOBUF:-}" \
372
--build-arg "LLVMDEV=${LLVMDEV:-}" \
0 commit comments