Skip to content

Commit 83cf037

Browse files
authored
Merge branch 'main' into spanner-enable-metrics
2 parents 285d043 + f02b42c commit 83cf037

24 files changed

Lines changed: 6798 additions & 116 deletions

File tree

.gcb/builds/triggers/main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,9 @@ locals {
112112
}
113113
lint-unstable = {
114114
config = "complex.yaml"
115+
pool = "rust-sdk-pool-large"
115116
flags = local.unstable_flags
116-
script = "lint-unstable"
117+
script = "lint"
117118
}
118119
minimal-versions = {
119120
config = "complex.yaml"

.gcb/scripts/lint-unstable.sh

Lines changed: 0 additions & 31 deletions
This file was deleted.

.gcb/scripts/lint.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@ rustup show active-toolchain -v
2222
set +v
2323

2424
echo "==== cargo clippy ===="
25-
cargo clippy --all-features --all-targets --profile=test --workspace -- --deny warnings
25+
cargo clippy --all-features --all-targets --profile=test --workspace --exclude google-cloud-compute-v1 --exclude google-cloud-aiplatform-v1 -- --deny warnings
26+
27+
echo "==== cargo clippy (large crates) ===="
28+
cargo clippy --all-features --all-targets --profile=test -p google-cloud-compute-v1 -- --deny warnings
29+
cargo clippy --all-features --all-targets --profile=test -p google-cloud-aiplatform-v1 -- --deny warnings
2630

2731
echo "==== cargo clippy strict (handwritten crates non-test mode) ===="
2832
cargo clippy-strict

librarian.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1487,8 +1487,6 @@ libraries:
14871487
copyright_year: "2026"
14881488
output: src/spanner
14891489
rust:
1490-
include_bidi_streaming_methods: false
1491-
include_server_streaming_methods: false
14921490
modules:
14931491
- module_path: crate::generated::gapic_dataplane::model
14941492
output: src/spanner/src/generated/convert/spanner

0 commit comments

Comments
 (0)