Skip to content

Commit 0d7ebb7

Browse files
Add .bazelci/presubmit.yml to test protobuf on Bazel CI
PiperOrigin-RevId: 731327971
1 parent 57b59ef commit 0d7ebb7

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

.bazelci/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Bazel CI test
2+
3+
The `.bazelci/presubmit.yml` file is used by https://buildkite.com/bazel/protobuf
4+
to test building protobuf with Bazel on Bazel CI. It should contain the same
5+
set of tests as `.bcr/presubmit.yml` which is the tests that will run before
6+
publishing protobuf to BCR.

.bazelci/presubmit.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# LINT.IfChange(bazelci_presubmit)
2+
matrix:
3+
platform: ["debian10", "macos", "macos_arm64", "ubuntu2004", "windows"]
4+
bazel: [7.x, 8.x]
5+
6+
tasks:
7+
verify_targets:
8+
name: "Verify build targets"
9+
working_directory: examples
10+
platform: ${{ platform }}
11+
bazel: ${{ bazel }}
12+
build_targets:
13+
- '//...'
14+
- '@com_google_protobuf//:protobuf'
15+
- '@com_google_protobuf//:protobuf_lite'
16+
- '@com_google_protobuf//:protobuf_python'
17+
- '@com_google_protobuf//:protobuf_java'
18+
- '@com_google_protobuf//:protoc'
19+
- '@com_google_protobuf//:test_messages_proto2_cc_proto'
20+
- '@com_google_protobuf//:test_messages_proto3_cc_proto'
21+
# LINT.ThenChange(<ROOT_DIR>/.bcr/presubmit.yml)

.bcr/presubmit.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
# LINT.IfChange(bcr_presubmit)
12
bcr_test_module:
23
module_path: examples
34
matrix:
4-
platform: ["debian10", "macos", "ubuntu2004", "windows"]
5+
platform: ["debian10", "macos", "macos_arm64", "ubuntu2004", "windows"]
56
bazel: [7.x, 8.x]
67

78
tasks:
@@ -17,4 +18,5 @@ bcr_test_module:
1718
- '@com_google_protobuf//:protobuf_java'
1819
- '@com_google_protobuf//:protoc'
1920
- '@com_google_protobuf//:test_messages_proto2_cc_proto'
20-
- '@com_google_protobuf//:test_messages_proto3_cc_proto'
21+
- '@com_google_protobuf//:test_messages_proto3_cc_proto'
22+
# LINT.ThenChange(<ROOT_DIR>/.bazelci/presubmit.yml)

0 commit comments

Comments
 (0)