Skip to content

Commit f33e3b3

Browse files
author
David Freese
authored
Add a CI target on the minimum supported version of bazel (#493)
This is currently 3.0.0, but given discussion that I have seen, that was probably too aggressive. However, until we test against our minimum supported version, it isn't going to be reasonable to provide releases as suggested by #415.
1 parent 29eb232 commit f33e3b3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.bazelci/presubmit.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ tasks:
1414
test_targets:
1515
- "..."
1616
- "@examples//..."
17+
ubuntu2004:
18+
name: "Minimum Supported Version"
19+
bazel: "3.0.0"
20+
build_targets: *default_targets
21+
test_targets: *default_targets
1722
macos:
1823
osx_targets: &osx_targets
1924
- "--" # Allows negative patterns; hack for https://github.com/bazelbuild/continuous-integration/pull/245
@@ -50,7 +55,7 @@ tasks:
5055
- "-@examples//ffi/rust_calling_c/simple/..."
5156
- "-@examples//hello_sys/..."
5257
- "-@examples//complex_sys/..."
53-
- "-@examples//proto/..."
58+
- "-@examples//proto/..."
5459
- "-@examples//wasm/..."
5560
build_targets: *windows_targets
5661
test_targets: *windows_targets

0 commit comments

Comments
 (0)