Skip to content

Commit

Permalink
chore: suppress pull progress (#3296)
Browse files Browse the repository at this point in the history
In this PR:
- Add `--quiet` option to `docker run` to suppress pulling progress,
according to [docker run
doc](https://docs.docker.com/reference/cli/docker/container/run/)
  • Loading branch information
JoeWang1127 authored Oct 18, 2024
1 parent a9eac85 commit 16365db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/scripts/hermetic_library_generation.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ popd
# run hermetic code generation docker image.
docker run \
--rm \
--quiet \
-u "$(id -u):$(id -g)" \
-v "$(pwd):${workspace_name}" \
-v "${m2_folder}":/home/.m2 \
Expand Down
1 change: 1 addition & 0 deletions library_generation/test/integration_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,7 @@ def __run_entry_point_in_docker_container(
"-u",
f"{user_id}:{group_id}",
"--rm",
"--quiet",
"-v",
f"{repo_location}:/workspace/repo",
"-v",
Expand Down

0 comments on commit 16365db

Please sign in to comment.