Spaces:
Running
Running
ci : disable publishing of java binding [no ci] (#3086)
Browse filesThis commit disables the publishing of the Java binding to the Maven
repository.
The motivation for this is that this job was disabled for some time and
recently it was re-enabled, but the publishing of the Java binding
caused the build to fail and needs to be investigated further.
Refs: https://github.com/ggml-org/whisper.cpp/issues/3079
- .github/workflows/build.yml +11 -11
.github/workflows/build.yml
CHANGED
|
@@ -1104,17 +1104,17 @@ jobs:
|
|
| 1104 |
name: whispercpp.jar
|
| 1105 |
path: bindings/java/build/libs/whispercpp-*.jar
|
| 1106 |
|
| 1107 |
-
- name: Publish package
|
| 1108 |
-
if: ${{ github.ref == 'refs/heads/master' }}
|
| 1109 |
-
uses: gradle/[email protected]
|
| 1110 |
-
with:
|
| 1111 |
-
arguments: publish
|
| 1112 |
-
build-root-directory: bindings/java
|
| 1113 |
-
env:
|
| 1114 |
-
MAVEN_USERNAME: ${{ secrets.JIRA_USER }}
|
| 1115 |
-
MAVEN_PASSWORD: ${{ secrets.JIRA_PASS }}
|
| 1116 |
-
PGP_SECRET: ${{ secrets.GPG_PRIVATE_KEY }}
|
| 1117 |
-
PGP_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
|
| 1118 |
|
| 1119 |
quantize:
|
| 1120 |
if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' ||
|
|
|
|
| 1104 |
name: whispercpp.jar
|
| 1105 |
path: bindings/java/build/libs/whispercpp-*.jar
|
| 1106 |
|
| 1107 |
+
# - name: Publish package
|
| 1108 |
+
# if: ${{ github.ref == 'refs/heads/master' }}
|
| 1109 |
+
# uses: gradle/[email protected]
|
| 1110 |
+
# with:
|
| 1111 |
+
# arguments: publish
|
| 1112 |
+
# build-root-directory: bindings/java
|
| 1113 |
+
# env:
|
| 1114 |
+
# MAVEN_USERNAME: ${{ secrets.JIRA_USER }}
|
| 1115 |
+
# MAVEN_PASSWORD: ${{ secrets.JIRA_PASS }}
|
| 1116 |
+
# PGP_SECRET: ${{ secrets.GPG_PRIVATE_KEY }}
|
| 1117 |
+
# PGP_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
|
| 1118 |
|
| 1119 |
quantize:
|
| 1120 |
if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' ||
|