Skip to content

Commit d27d0be

Browse files
committed
chore: manual fixes for java-storage-nio builds
b/477663567 Skipping the checkstyle plugin in google-cloud-nio-examples and google-cloud-nio-retrofit modules because the plugin was not running in the modules in googleapis/java-storage-nio.
1 parent ddc4d26 commit d27d0be

File tree

11 files changed

+21
-8
lines changed

11 files changed

+21
-8
lines changed

.github/workflows/java-storage-nio-ci.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,8 @@ jobs:
129129
runs-on: ubuntu-latest
130130
steps:
131131
- uses: actions/checkout@v4
132+
with:
133+
fetch-depth: 0
132134
- uses: actions/setup-java@v4
133135
with:
134136
distribution: temurin
@@ -137,3 +139,5 @@ jobs:
137139
- run: .kokoro/build.sh
138140
env:
139141
JOB_TYPE: lint
142+
HEAD_SHA: ${{ github.event.pull_request.head.sha }}
143+
BASE_SHA: ${{ github.event.pull_request.base.sha }}

.kokoro/presubmit/storage-nio-graalvm-native-presubmit.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Configure the docker image for kokoro-trampoline.
44
env_vars: {
55
key: "TRAMPOLINE_IMAGE"
6-
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.58.0"
6+
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.58.0" # {x-version-update:google-cloud-shared-dependencies:current}
77
}
88

99
env_vars: {

.kokoro/presubmit/storage-nio-integration.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Configure the docker image for kokoro-trampoline.
44
env_vars: {
55
key: "TRAMPOLINE_IMAGE"
6-
value: "gcr.io/cloud-devrel-kokoro-resources/java8"
6+
value: "gcr.io/cloud-devrel-kokoro-resources/java11"
77
}
88

99
env_vars: {

gapic-libraries-bom/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -957,6 +957,13 @@
957957
<type>pom</type>
958958
<scope>import</scope>
959959
</dependency>
960+
<dependency>
961+
<groupId>com.google.cloud</groupId>
962+
<artifactId>google-cloud-nio-bom</artifactId>
963+
<version>0.128.15-SNAPSHOT</version><!-- {x-version-update:google-cloud-nio:current} -->
964+
<type>pom</type>
965+
<scope>import</scope>
966+
</dependency>
960967
<dependency>
961968
<groupId>com.google.cloud</groupId>
962969
<artifactId>google-cloud-notebooks-bom</artifactId>

google-cloud-jar-parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
<dependency>
6767
<groupId>com.google.apis</groupId>
6868
<artifactId>google-api-services-storage</artifactId>
69-
<version>v1-rev20251118-2.0.0</version>
69+
<version>v1-rev20260204-2.0.0</version>
7070
</dependency>
7171

7272
<!-- Test dependencies -->

java-storage-nio/google-cloud-nio-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.google.cloud</groupId>
55
<artifactId>google-cloud-nio-bom</artifactId>
6-
<version>0.128.14</version><!-- {x-version-update:google-cloud-nio:current} -->
6+
<version>0.128.15-SNAPSHOT</version><!-- {x-version-update:google-cloud-nio:current} -->
77
<packaging>pom</packaging>
88
<parent>
99
<groupId>com.google.cloud</groupId>

java-storage-nio/google-cloud-nio-examples/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
</dependencies>
2424
<properties>
2525
<site.installationModule>google-cloud-nio-examples</site.installationModule>
26+
<checkstyle.skip>true</checkstyle.skip>
2627
</properties>
2728
<build>
2829
<plugins>

java-storage-nio/google-cloud-nio-retrofit/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
</parent>
1717
<properties>
1818
<site.installationModule>google-cloud-nio-retrofit</site.installationModule>
19+
<checkstyle.skip>true</checkstyle.skip>
1920
</properties>
2021
<build>
2122
<plugins>

java-storage-nio/google-cloud-nio/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>com.google.cloud</groupId>
1414
<artifactId>google-cloud-nio-parent</artifactId>
15-
<version>0.128.14</version><!-- {x-version-update:google-cloud-nio:current} -->
15+
<version>0.128.15-SNAPSHOT</version><!-- {x-version-update:google-cloud-nio:current} -->
1616
</parent>
1717
<properties>
1818
<site.installationModule>google-cloud-nio</site.installationModule>

java-storage-nio/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.google.cloud</groupId>
55
<artifactId>google-cloud-nio-parent</artifactId>
66
<packaging>pom</packaging>
7-
<version>0.128.14</version><!-- {x-version-update:google-cloud-nio:current} -->
7+
<version>0.128.15-SNAPSHOT</version><!-- {x-version-update:google-cloud-nio:current} -->
88
<name>Storage Parent</name>
99
<url>https://github.com/googleapis/google-cloud-java</url>
1010
<description>
@@ -72,7 +72,7 @@
7272
<dependency>
7373
<groupId>com.google.cloud</groupId>
7474
<artifactId>google-cloud-storage</artifactId>
75-
<version>2.64.1</version>
75+
<version>2.64.2-SNAPSHOT</version><!-- {x-version-update:google-cloud-storage:current} -->
7676
<exclusions>
7777
<exclusion>
7878
<groupId>io.opentelemetry.semconv</groupId>

0 commit comments

Comments
 (0)