Brian Silverman | 5f6f276 | 2022-08-13 19:30:05 -0700 | [diff] [blame^] | 1 | # Bazel settings for use in Github CI |
| 2 | |
| 3 | # Always display the flags being used |
| 4 | common --announce_rc |
| 5 | |
| 6 | # These settings make the windows workers behave similarly to unix workers |
| 7 | startup --windows_enable_symlinks |
| 8 | build --enable_runfiles |
| 9 | |
| 10 | # Show errors in CI |
| 11 | test --test_output=errors |
| 12 | |
| 13 | # Show more information about failures |
| 14 | build --verbose_failures |
| 15 | |
| 16 | # UI for cleaner CI output |
| 17 | common --color=no |
| 18 | common --curses=no |
| 19 | common --show_task_finish |
| 20 | common --show_timestamps |