forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make bazel output less verbose in CI (pytorch#62601)
Summary: Fixes pytorch#62600 Adds `bazel --config=no-tty` that is useful for less verbose output in environments that don't implement full tty like CI. Pull Request resolved: pytorch#62601 Reviewed By: soulitzer Differential Revision: D30070154 Pulled By: malfet fbshipit-source-id: 5b89af8441c3c6c7ca7e9a0ebdfddee00c9ab576
- Loading branch information
1 parent
3bda4ea
commit b37578b
Showing
2 changed files
with
7 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
build --copt=--std=c++14 | ||
build --copt=-I. | ||
build --copt=-isystem --copt bazel-out/k8-fastbuild/bin | ||
|
||
# Configuration to disable tty features for environments like CI | ||
|
||
build:no-tty --curses no | ||
build:no-tty --progress_report_interval 10 | ||
build:no-tty --show_progress_rate_limit 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters