Skip to content

Commit

Permalink
removing dependency of singing in the local build
Browse files Browse the repository at this point in the history
  • Loading branch information
affonsov committed Jun 29, 2024
1 parent 3f02add commit 2742c38
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ jobs:
ls -ltr
env:
SECRING_GPG: ${{ secrets.SECRING_GPG }}

- name: Build java client
working-directory: java
run: ./gradlew --continue build :client:publishToMavenLocal -Psigning.secretKeyRingFile=secring.gpg -Psigning.password="${{ secrets.GPG_PASSWORD }}" -Psigning.keyId=${{ secrets.GPG_KEY_ID }}
run: ./gradlew --continue build

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

- name: Build java part
working-directory: java
run: ./gradlew --continue build :client:publishToMavenLocal -Psigning.secretKeyRingFile=secring.gpg -Psigning.password="${{ secrets.GPG_PASSWORD }}" -Psigning.keyId=${{ secrets.GPG_KEY_ID }}
run: ./gradlew --continue build

- 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('copyNativeLib')
test.dependsOn('buildRust')
testFfi.dependsOn('buildRust')

Expand Down

0 comments on commit 2742c38

Please sign in to comment.