Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit d28d5bf

Browse files
g-easyisturdy
authored andcommitted
Run format as early as possible, make bazel less chatty. (#27)
1 parent e44c43b commit d28d5bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ dist: trusty
44
sudo: false
55

66
before_install:
7+
- ./format.sh
78
- wget https://github.com/bazelbuild/bazel/releases/download/0.8.1/bazel-0.8.1-installer-linux-x86_64.sh
89
- chmod +x bazel-0.8.1-installer-linux-x86_64.sh
910
- ./bazel-0.8.1-installer-linux-x86_64.sh --user
1011

1112
script:
1213
# We can't use --noshow_progress because Travis terminates the
1314
# build after 10 mins without output.
14-
- bazel build -k $(bazel query //... | grep -v :_)
15-
- bazel test -k $(bazel query //... | grep -v :_)
16-
- ./format.sh
15+
- bazel build --experimental_ui_actions_shown=1 -k $(bazel query ... | grep -v :_)
16+
- bazel test --experimental_ui_actions_shown=1 -k $(bazel query ... | grep -v :_)

0 commit comments

Comments
 (0)