Skip to content

Commit e239be7

Browse files
committed
set -E when calling the install scripts
1 parent ca4a507 commit e239be7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -554,9 +554,9 @@ jobs:
554554
PROTOBUF_VERSION: '23.3'
555555
GRPC_VERSION: 'v1.55.0'
556556
run: |
557-
sudo ./ci/install_abseil.sh
558-
sudo ./ci/install_protobuf.sh
559-
sudo ./ci/setup_grpc.sh -r $GRPC_VERSION -s $CXX_STANDARD -p protobuf -p abseil
557+
sudo -E ./ci/install_abseil.sh
558+
sudo -E ./ci/install_protobuf.sh
559+
sudo -E ./ci/setup_grpc.sh -r $GRPC_VERSION -s $CXX_STANDARD -p protobuf -p abseil
560560
- name: build and test
561561
run: |
562562
./ci/do_ci.sh cmake.install.test

0 commit comments

Comments
 (0)