summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorDerek Mauro <dmauro@google.com>2022-08-12 10:46:04 -0700
committerCopybara-Service <copybara-worker@google.com>2022-08-12 10:46:39 -0700
commit7274ec186442c96e4c7dcc99c684a03e5db2ff48 (patch)
tree25872a6b1b25a040cffaa9185403ccba86ce2826 /.github/workflows
parent4c9a3bb62bf3ba1f1010bf96f9c8ed767b363774 (diff)
downloadgoogletest-git-7274ec186442c96e4c7dcc99c684a03e5db2ff48.tar.gz
Add --features=external_include_paths to Bazel CI to ignore warnings
from dependencies PiperOrigin-RevId: 467244441 Change-Id: Iefa65474d8c62e7c4c942957dc8e275715076e5f
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/gtest-ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/gtest-ci.yml b/.github/workflows/gtest-ci.yml
index 036c392f..b2dcab49 100644
--- a/.github/workflows/gtest-ci.yml
+++ b/.github/workflows/gtest-ci.yml
@@ -17,7 +17,7 @@ jobs:
fetch-depth: 0
- name: Tests
- run: bazel test --test_output=errors //...
+ run: bazel test --cxxopt=-std=c++14 --features=external_include_paths --test_output=errors ...
MacOs:
runs-on: macos-latest
@@ -28,7 +28,7 @@ jobs:
fetch-depth: 0
- name: Tests
- run: bazel test --test_output=errors //...
+ run: bazel test --cxxopt=-std=c++14 --features=external_include_paths --test_output=errors ...
Windows:
@@ -40,4 +40,4 @@ jobs:
fetch-depth: 0
- name: Tests
- run: bazel test --test_output=errors //...
+ run: bazel test --cxxopt=-std=c++14 --features=external_include_paths --test_output=errors ...