Skip to content

Commit

Permalink
adding skip signing
Browse files Browse the repository at this point in the history
  • Loading branch information
affonsov committed Jun 29, 2024
1 parent d0e06b7 commit e448788
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:

- name: Build java client
working-directory: java
run: ./gradlew --continue build
run: ./gradlew --continue build -Pskip.signing

- name: Ensure no skipped files by linter
working-directory: java
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:

- name: Build java part
working-directory: java
run: ./gradlew --continue build
run: ./gradlew --continue build -Pskip.signing

- name: Upload test reports
if: always()
Expand Down
2 changes: 1 addition & 1 deletion java/client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ tasks.register('copyNativeLib', Copy) {

jar.dependsOn('copyNativeLib')
copyNativeLib.dependsOn('buildRustRelease')
//compileTestJava.dependsOn('publishToMavenLocal')
compileTestJava.dependsOn('publishToMavenLocal')
test.dependsOn('buildRust')
testFfi.dependsOn('buildRust')

Expand Down

0 comments on commit e448788

Please sign in to comment.