Skip to content

Commit 40f961d

Browse files
authored
Update gtest-ci.yml
1 parent 2f8eba4 commit 40f961d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/gtest-ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,39 +5,39 @@ on:
55
pull_request:
66

77
env:
8-
BAZEL_CXXOPTS: -std=c++14
8+
BAZEL_CXXOPTS: -std=c++17
99

1010
jobs:
1111
Linux:
1212
runs-on: ubuntu-latest
1313
steps:
1414

15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0
1818

1919
- name: Tests
20-
run: bazel test --cxxopt=-std=c++14 --features=external_include_paths --test_output=errors ...
20+
run: bazel test --cxxopt=-std=c++17 --features=external_include_paths --test_output=errors ...
2121

2222
macOS:
2323
runs-on: macos-latest
2424
steps:
2525

26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
with:
2828
fetch-depth: 0
2929

3030
- name: Tests
31-
run: bazel test --cxxopt=-std=c++14 --features=external_include_paths --test_output=errors ...
31+
run: bazel test --cxxopt=-std=c++17 --features=external_include_paths --test_output=errors ...
3232

3333

3434
Windows:
3535
runs-on: windows-latest
3636
steps:
3737

38-
- uses: actions/checkout@v3
38+
- uses: actions/checkout@v4
3939
with:
4040
fetch-depth: 0
4141

4242
- name: Tests
43-
run: bazel test --cxxopt=/std:c++14 --features=external_include_paths --test_output=errors ...
43+
run: bazel test --cxxopt=/std:c++17 --features=external_include_paths --test_output=errors ...

0 commit comments

Comments
 (0)