aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDerek Mauro <dmauro@google.com>2022-09-13 10:12:42 -0700
committerCopybara-Service <copybara-worker@google.com>2022-09-13 10:13:37 -0700
commit1336c4b6d1a6f4bc6beebccb920e5ff858889292 (patch)
tree43e995d102f229acb58b56ac6ac26b257073c1d6 /.github
parent7cafeff7bddf0430ae1e68ebb6213bb7c5d4a8ec (diff)
downloadgoogletest-1336c4b6d1a6f4bc6beebccb920e5ff858889292.zip
googletest-1336c4b6d1a6f4bc6beebccb920e5ff858889292.tar.gz
googletest-1336c4b6d1a6f4bc6beebccb920e5ff858889292.tar.bz2
Fix MSVC C++14 flag for GitHub workflow
PiperOrigin-RevId: 474053482 Change-Id: If5cdf7458139ba3ad04b8c078734d6890199a348
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/gtest-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/gtest-ci.yml b/.github/workflows/gtest-ci.yml
index b2dcab4..bcef926 100644
--- a/.github/workflows/gtest-ci.yml
+++ b/.github/workflows/gtest-ci.yml
@@ -40,4 +40,4 @@ jobs:
fetch-depth: 0
- name: Tests
- run: bazel test --cxxopt=-std=c++14 --features=external_include_paths --test_output=errors ...
+ run: bazel test --cxxopt=/std:c++14 --features=external_include_paths --test_output=errors ...