Skip to content

Commit e448788

Browse files
committed
adding skip signing
1 parent d0e06b7 commit e448788

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/java.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787

8888
- name: Build java client
8989
working-directory: java
90-
run: ./gradlew --continue build
90+
run: ./gradlew --continue build -Pskip.signing
9191

9292
- name: Ensure no skipped files by linter
9393
working-directory: java
@@ -166,7 +166,7 @@ jobs:
166166

167167
- name: Build java part
168168
working-directory: java
169-
run: ./gradlew --continue build
169+
run: ./gradlew --continue build -Pskip.signing
170170

171171
- name: Upload test reports
172172
if: always()

java/client/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ tasks.register('copyNativeLib', Copy) {
157157

158158
jar.dependsOn('copyNativeLib')
159159
copyNativeLib.dependsOn('buildRustRelease')
160-
//compileTestJava.dependsOn('publishToMavenLocal')
160+
compileTestJava.dependsOn('publishToMavenLocal')
161161
test.dependsOn('buildRust')
162162
testFfi.dependsOn('buildRust')
163163

0 commit comments

Comments
 (0)