Skip to content

Commit 1e4f22a

Browse files
committed
update C++
1 parent e89a50b commit 1e4f22a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.bazelci/presubmit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,10 @@ tasks:
107107
working_directory: examples/bzlmod
108108
bazel: ${{ bazel }}
109109
test_flags:
110+
# Minimum bazel supported C++
110111
- "--keep_going"
111-
# Without these cxxopts, BCR's Mac builds fail
112-
- '--cxxopt=-std=c++14'
113-
- '--host_cxxopt=-std=c++14'
112+
- '--cxxopt=-std=c++17'
113+
- '--host_cxxopt=-std=c++17'
114114
build_targets:
115115
- "//..."
116116
test_targets:

.bcr/presubmit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ bcr_test_module:
2323
platform: ${{ platform }}
2424
bazel: ${{ bazel }}
2525
test_flags:
26+
# Minimum bazel supported C++
2627
- "--keep_going"
27-
# Without these cxxopts, BCR's Mac builds fail
28-
- '--cxxopt=-std=c++14'
29-
- '--host_cxxopt=-std=c++14'
28+
- '--cxxopt=-std=c++17'
29+
- '--host_cxxopt=-std=c++17'
3030
build_targets:
3131
- "//..."
3232
test_targets:

0 commit comments

Comments
 (0)