From c93813369edc330d7824acf52e4c64b7a9b62f3c Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Tue, 5 Dec 2023 15:03:57 +0000 Subject: [PATCH] Quiet Wait for 5s --- .github/workflows/build.yml | 3 ++- tools/docker/build.Dockerfile | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b44a9de16..e6257eb2d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -308,7 +308,8 @@ jobs: # export BAZEL_OPTIMIZATION="${BAZEL_OPTIMIZATION} --remote_upload_local_results=true --google_credentials=service_account_creds.json" #fi docker build -t io -f tools/docker/build.Dockerfile --build-arg PYTHON_VERSION=3.10 --build-arg TENSORFLOW_VERSION=2.14 --build-arg BAZEL_OPTIMIZATION="${BAZEL_OPTIMIZATION}" --progress=plain . - docker create -it io --name io bash + docker create -it --name io io bash + sleep 5 docker cp -L io:/opt/io/bazel-bin build sudo cp .bazelrc build/tensorflow_io/ sudo chown -R $(id -nu):$(id -ng) . diff --git a/tools/docker/build.Dockerfile b/tools/docker/build.Dockerfile index ca3e46040..29d1c317d 100644 --- a/tools/docker/build.Dockerfile +++ b/tools/docker/build.Dockerfile @@ -17,5 +17,5 @@ RUN python$PYTHON_VERSION tools/build/configure.py RUN cat .bazelrc -RUN TF_PYTHON_VERSION=${PYTHON_VERSION} bazel build -s --verbose_failures ${BAZEL_OPTIMIZATION} -- //tensorflow_io/... //tensorflow_io_gcs_filesystem/... +RUN TF_PYTHON_VERSION=${PYTHON_VERSION} bazel build --noshow_progress --verbose_failures ${BAZEL_OPTIMIZATION} -- //tensorflow_io/... //tensorflow_io_gcs_filesystem/...