Skip to content

Commit db4d792

Browse files
committed
Set bash as default shell to use
1 parent 65de4c7 commit db4d792

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ env:
3232
BUILDOZER_SHA256SUM: '3d58a0b6972e4535718cdd6c12778170ea7382de7c75bc3728f5719437ffb84d'
3333
TENSORFLOW_VERSION: 'tf-nightly'
3434

35+
defaults:
36+
run:
37+
shell: bash
38+
3539
jobs:
3640
build:
3741
# Self-hosted runner since the ones provided by GH were running out of space.
@@ -79,8 +83,8 @@ jobs:
7983
# for removing this kludge.
8084
run: |
8185
( set -o pipefail;
82-
bazel build //tensorboard/... 2>&1 |\
83-
grep -v 'external/com_google_protobuf/python: warning: directory' 2>&1 |\
86+
bazel build //tensorboard/... |&\
87+
grep -v 'external/com_google_protobuf/python: warning: directory' |&\
8488
grep -v 'INFO: From ProtoCompile ' )
8589
- name: 'Bazel: test (with TensorFlow support)'
8690
run: bazel test //tensorboard/...

0 commit comments

Comments
 (0)