Skip to content

Commit 69339af

Browse files
committed
ci : disable failing CUDA and Java builds
1 parent 0d2e2ae commit 69339af

File tree

2 files changed

+28
-25
lines changed

2 files changed

+28
-25
lines changed

.github/workflows/build.yml

+25-24
Original file line numberDiff line numberDiff line change
@@ -586,30 +586,31 @@ jobs:
586586
cd whisper/examples/whisper.android
587587
./gradlew assembleRelease --no-daemon -PGGML_HOME=$PATH_TO_GGML
588588
589-
android_java:
590-
runs-on: ubuntu-latest
591-
592-
steps:
593-
- name: Clone
594-
uses: actions/checkout@v4
595-
596-
- name: set up JDK 11
597-
uses: actions/setup-java@v4
598-
with:
599-
java-version: '11'
600-
distribution: 'temurin'
601-
cache: gradle
602-
603-
- name: Setup Android SDK
604-
uses: android-actions/setup-android@v3
605-
with:
606-
cmdline-tools-version: 9.0
607-
608-
- name: Build
609-
run: |
610-
cd examples/whisper.android.java
611-
chmod +x ./gradlew
612-
./gradlew assembleRelease
589+
# TODO: disable because of following fail: https://github.com/ggerganov/whisper.cpp/actions/runs/11019444420/job/30627193602
590+
# android_java:
591+
# runs-on: ubuntu-latest
592+
#
593+
# steps:
594+
# - name: Clone
595+
# uses: actions/checkout@v4
596+
#
597+
# - name: set up JDK 11
598+
# uses: actions/setup-java@v4
599+
# with:
600+
# java-version: '11'
601+
# distribution: 'temurin'
602+
# cache: gradle
603+
#
604+
# - name: Setup Android SDK
605+
# uses: android-actions/setup-android@v3
606+
# with:
607+
# cmdline-tools-version: 9.0
608+
#
609+
# - name: Build
610+
# run: |
611+
# cd examples/whisper.android.java
612+
# chmod +x ./gradlew
613+
# ./gradlew assembleRelease
613614

614615
# TODO: disabled because of following fail: https://github.com/ggerganov/whisper.cpp/actions/runs/9686220096/job/26735899598
615616
# java:

.github/workflows/docker.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ jobs:
1818
matrix:
1919
config:
2020
- { tag: "main", dockerfile: ".devops/main.Dockerfile", platform: "linux/amd64,linux/arm64" }
21-
- { tag: "main-cuda", dockerfile: ".devops/main-cuda.Dockerfile", platform: "linux/amd64" }
21+
#TODO: the cuda image keeps failing - disable for now
22+
# https://github.com/ggerganov/whisper.cpp/actions/runs/11019444428/job/30602020339
23+
#- { tag: "main-cuda", dockerfile: ".devops/main-cuda.Dockerfile", platform: "linux/amd64" }
2224

2325
steps:
2426
- name: Check out the repo

0 commit comments

Comments
 (0)