diff options
author | Derek Mauro <dmauro@google.com> | 2022-07-11 17:16:57 (GMT) |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2022-07-11 17:17:32 (GMT) |
commit | 4086e92d861a943d47033d641e97d2ad32faf63d (patch) | |
tree | 8b84798287453e747d63d92e413d4519ef0ce9b4 /.github/workflows | |
parent | 2e1346de56dcfe38dd8885bfcb5168eb17fc4544 (diff) | |
download | googletest-4086e92d861a943d47033d641e97d2ad32faf63d.zip googletest-4086e92d861a943d47033d641e97d2ad32faf63d.tar.gz googletest-4086e92d861a943d47033d641e97d2ad32faf63d.tar.bz2 |
Add envvar BAZEL_CXXOPTS=-std=c++14 to the GitHub Actions CI
PiperOrigin-RevId: 460242683
Change-Id: I182a2e082d3a7e38fd3686e9e7af200ba0f954e0
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/gtest-ci.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/gtest-ci.yml b/.github/workflows/gtest-ci.yml index 61fd47e..036c392 100644 --- a/.github/workflows/gtest-ci.yml +++ b/.github/workflows/gtest-ci.yml @@ -4,6 +4,9 @@ on: push: pull_request: +env: + BAZEL_CXXOPTS: -std=c++14 + jobs: Linux: runs-on: ubuntu-latest |