Skip to content

Commit 743154d

Browse files
committed
fix module detection
1 parent 7c93fea commit 743154d

4 files changed

Lines changed: 12 additions & 13 deletions

File tree

.kokoro/common.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ function generate_modified_modules_list() {
204204
if [[ -n $modules ]]; then
205205
modules=$(echo "${modules}" | cut -d '/' -f1 | sort -u)
206206
for module in $modules; do
207-
if [[ ! " ${excluded_modules[*]} " =~ " ${module} " && " ${maven_modules[*]} " =~ " ${module} " ]]; then
207+
if [[ " ${maven_modules[*]} " =~ " ${module} " ]]; then
208208
modified_module_list+=("${module}")
209209
fi
210210
done

.kokoro/presubmit/bigquerystorage-integration.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ env_vars: {
3232
value: "java-it-service-account"
3333
}
3434

35-
3635
env_vars: {
3736
key: "BUILD_SUBDIR"
3837
value: "java-bigquerystorage"

.kokoro/presubmit/logging-graalvm-native-presubmit.cfg

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,25 @@ env_vars: {
1414
# TODO: remove this after we've migrated all tests and scripts
1515
env_vars: {
1616
key: "GCLOUD_PROJECT"
17-
value: "cloud-java-ci-test"
17+
value: "gcloud-devel"
1818
}
1919

2020
env_vars: {
2121
key: "GOOGLE_CLOUD_PROJECT"
22-
value: "cloud-java-ci-test"
22+
value: "gcloud-devel"
2323
}
2424

2525
env_vars: {
2626
key: "GOOGLE_APPLICATION_CREDENTIALS"
27-
value: "secret_manager/cloud-java-ci-it-service-account"
27+
value: "secret_manager/java-it-service-account"
2828
}
2929

3030
env_vars: {
3131
key: "SECRET_MANAGER_KEYS"
32-
value: "cloud-java-ci-it-service-account, java-bigqueryconnection-samples-secrets"
32+
value: "java-it-service-account"
3333
}
3434

3535
env_vars: {
3636
key: "BUILD_SUBDIR"
37-
value: "java-logging"
38-
}
37+
value: "java-bigquerystorage"
38+
}

.kokoro/presubmit/logging-integration.cfg

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,25 @@ env_vars: {
1414
# TODO: remove this after we've migrated all tests and scripts
1515
env_vars: {
1616
key: "GCLOUD_PROJECT"
17-
value: "cloud-java-ci-test"
17+
value: "gcloud-devel"
1818
}
1919

2020
env_vars: {
2121
key: "GOOGLE_CLOUD_PROJECT"
22-
value: "cloud-java-ci-test"
22+
value: "gcloud-devel"
2323
}
2424

2525
env_vars: {
2626
key: "GOOGLE_APPLICATION_CREDENTIALS"
27-
value: "secret_manager/cloud-java-ci-it-service-account"
27+
value: "secret_manager/java-it-service-account"
2828
}
2929

3030
env_vars: {
3131
key: "SECRET_MANAGER_KEYS"
32-
value: "cloud-java-ci-it-service-account, java-bigqueryconnection-samples-secrets"
32+
value: "java-it-service-account"
3333
}
3434

3535
env_vars: {
3636
key: "BUILD_SUBDIR"
37-
value: "java-logging"
37+
value: "java-bigquerystorage"
3838
}

0 commit comments

Comments
 (0)