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