Skip to content

Commit 1caec8f

Browse files
chore: move graalvm checks to continuous builds (#1997)
* chore: move graalvm checks to continuous builds * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent da06a46 commit 1caec8f

File tree

4 files changed

+77
-4
lines changed

4 files changed

+77
-4
lines changed

.github/sync-repo-settings.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ branchProtectionRules:
1717
- 'Kokoro - Test: Integration'
1818
- cla/google
1919
- OwlBot Post Processor
20-
- 'Kokoro - Test: Java GraalVM Native Image'
21-
- 'Kokoro - Test: Java 17 GraalVM Native Image'
2220
- pattern: java7
2321
isAdminEnforced: true
2422
requiredApprovingReviewCount: 1
@@ -79,8 +77,6 @@ branchProtectionRules:
7977
- 'Kokoro - Test: Integration'
8078
- cla/google
8179
- OwlBot Post Processor
82-
- 'Kokoro - Test: Java GraalVM Native Image'
83-
- 'Kokoro - Test: Java 17 GraalVM Native Image'
8480
permissionRules:
8581
- team: yoshi-admins
8682
permission: admin
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Format: //devtools/kokoro/config/proto/build.proto
2+
3+
# Configure the docker image for kokoro-trampoline.
4+
env_vars: {
5+
key: "TRAMPOLINE_IMAGE"
6+
value: "gcr.io/cloud-devrel-kokoro-resources/graalvm17:22.3.0"
7+
}
8+
9+
env_vars: {
10+
key: "JOB_TYPE"
11+
value: "graalvm17"
12+
}
13+
14+
# TODO: remove this after we've migrated all tests and scripts
15+
env_vars: {
16+
key: "GCLOUD_PROJECT"
17+
value: "gcloud-devel"
18+
}
19+
20+
env_vars: {
21+
key: "GOOGLE_CLOUD_PROJECT"
22+
value: "gcloud-devel"
23+
}
24+
25+
env_vars: {
26+
key: "GOOGLE_APPLICATION_CREDENTIALS"
27+
value: "secret_manager/java-it-service-account"
28+
}
29+
30+
env_vars: {
31+
key: "SECRET_MANAGER_KEYS"
32+
value: "java-it-service-account"
33+
}
34+
35+
env_vars: {
36+
key: "ENABLE_FLAKYBOT"
37+
value: "true"
38+
}

.kokoro/continuous/graalvm-native.cfg

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Format: //devtools/kokoro/config/proto/build.proto
2+
3+
# Configure the docker image for kokoro-trampoline.
4+
env_vars: {
5+
key: "TRAMPOLINE_IMAGE"
6+
value: "gcr.io/cloud-devrel-kokoro-resources/graalvm:22.3.0"
7+
}
8+
9+
env_vars: {
10+
key: "JOB_TYPE"
11+
value: "graalvm"
12+
}
13+
14+
# TODO: remove this after we've migrated all tests and scripts
15+
env_vars: {
16+
key: "GCLOUD_PROJECT"
17+
value: "gcloud-devel"
18+
}
19+
20+
env_vars: {
21+
key: "GOOGLE_CLOUD_PROJECT"
22+
value: "gcloud-devel"
23+
}
24+
25+
env_vars: {
26+
key: "GOOGLE_APPLICATION_CREDENTIALS"
27+
value: "secret_manager/java-it-service-account"
28+
}
29+
30+
env_vars: {
31+
key: "SECRET_MANAGER_KEYS"
32+
value: "java-it-service-account"
33+
}
34+
35+
env_vars: {
36+
key: "ENABLE_FLAKYBOT"
37+
value: "true"
38+
}

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ If you are using Gradle without BOM, add this to your dependencies:
5757

5858
```Groovy
5959
implementation 'com.google.cloud:google-cloud-bigquerystorage:2.31.0'
60+
```
6061

6162
If you are using SBT, add this to your dependencies:
6263

0 commit comments

Comments
 (0)