ggerganov commited on
Commit
ecef312
·
unverified ·
1 Parent(s): 3d92452

ci : disable failing CUDA and Java builds

Browse files
.github/workflows/build.yml CHANGED
@@ -586,30 +586,31 @@ jobs:
586
  cd whisper/examples/whisper.android
587
  ./gradlew assembleRelease --no-daemon -PGGML_HOME=$PATH_TO_GGML
588
 
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
 
613
 
614
  # TODO: disabled because of following fail: https://github.com/ggerganov/whisper.cpp/actions/runs/9686220096/job/26735899598
615
  # java:
 
586
  cd whisper/examples/whisper.android
587
  ./gradlew assembleRelease --no-daemon -PGGML_HOME=$PATH_TO_GGML
588
 
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
614
 
615
  # TODO: disabled because of following fail: https://github.com/ggerganov/whisper.cpp/actions/runs/9686220096/job/26735899598
616
  # java:
.github/workflows/docker.yml CHANGED
@@ -18,7 +18,9 @@ jobs:
18
  matrix:
19
  config:
20
  - { tag: "main", dockerfile: ".devops/main.Dockerfile", platform: "linux/amd64,linux/arm64" }
21
- - { tag: "main-cuda", dockerfile: ".devops/main-cuda.Dockerfile", platform: "linux/amd64" }
 
 
22
 
23
  steps:
24
  - name: Check out the repo
 
18
  matrix:
19
  config:
20
  - { tag: "main", dockerfile: ".devops/main.Dockerfile", platform: "linux/amd64,linux/arm64" }
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" }
24
 
25
  steps:
26
  - name: Check out the repo