Skip to content

Commit

Permalink
Quiet
Browse files Browse the repository at this point in the history
Wait for 5s
  • Loading branch information
yongtang committed Dec 5, 2023
1 parent b4595bc commit c938133
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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) .
Expand Down
2 changes: 1 addition & 1 deletion tools/docker/build.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/...

0 comments on commit c938133

Please sign in to comment.