mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-06-01 06:50:41 +00:00
Some checks failed
Bindings Tests (Ruby) / ubuntu-22 (push) Has been cancelled
CI / ubuntu-22 (linux/amd64) (push) Has been cancelled
CI / ubuntu-22 (linux/ppc64le) (push) Has been cancelled
CI / ubuntu-22-arm64 (linux/arm64) (push) Has been cancelled
CI / ubuntu-22-arm-v7 (linux/arm/v7) (push) Has been cancelled
CI / macOS-latest (push) Has been cancelled
CI / ubuntu-22-gcc (linux/amd64, Debug) (push) Has been cancelled
CI / ubuntu-22-gcc (linux/amd64, Release) (push) Has been cancelled
CI / ubuntu-22-gcc (linux/ppc64le, Debug) (push) Has been cancelled
CI / ubuntu-22-gcc (linux/ppc64le, Release) (push) Has been cancelled
CI / ubuntu-22-gcc-arm64 (linux/arm64, Debug) (push) Has been cancelled
CI / ubuntu-22-gcc-arm64 (linux/arm64, Release) (push) Has been cancelled
CI / ubuntu-22-gcc-arm-v7 (linux/arm/v7, Debug) (push) Has been cancelled
CI / ubuntu-22-gcc-arm-v7 (linux/arm/v7, Release) (push) Has been cancelled
CI / ubuntu-22-clang (linux/amd64, Debug) (push) Has been cancelled
CI / ubuntu-22-clang (linux/amd64, Release) (push) Has been cancelled
CI / ubuntu-22-clang (linux/arm64, Debug) (push) Has been cancelled
CI / ubuntu-22-clang (linux/arm64, Release) (push) Has been cancelled
CI / ubuntu-22-clang (linux/ppc64le, Debug) (push) Has been cancelled
CI / ubuntu-22-clang (linux/ppc64le, Release) (push) Has been cancelled
CI / ubuntu-22-gcc-sanitized (linux/amd64, ADDRESS) (push) Has been cancelled
CI / ubuntu-22-gcc-sanitized (linux/amd64, THREAD) (push) Has been cancelled
CI / ubuntu-22-gcc-sanitized (linux/amd64, UNDEFINED) (push) Has been cancelled
CI / ubuntu-22-cmake-sycl (linux/amd64, icx, icpx, ON) (push) Has been cancelled
CI / ubuntu-22-cmake-sycl (linux/arm/v7, icx, icpx, ON) (push) Has been cancelled
CI / ubuntu-22-cmake-sycl (linux/arm64, icx, icpx, ON) (push) Has been cancelled
CI / ubuntu-22-cmake-sycl (linux/ppc64le, icx, icpx, ON) (push) Has been cancelled
CI / ubuntu-22-cmake-sycl-fp16 (linux/amd64, icx, icpx, ON) (push) Has been cancelled
CI / ubuntu-22-cmake-sycl-fp16 (linux/arm/v7, icx, icpx, ON) (push) Has been cancelled
CI / ubuntu-22-cmake-sycl-fp16 (linux/arm64, icx, icpx, ON) (push) Has been cancelled
CI / ubuntu-22-cmake-sycl-fp16 (linux/ppc64le, icx, icpx, ON) (push) Has been cancelled
CI / windows-msys2 (Release, clang-x86_64, CLANG64) (push) Has been cancelled
CI / windows-msys2 (Release, ucrt-x86_64, UCRT64) (push) Has been cancelled
CI / windows (Win32, Release, win32-x86, x86, 2.28.5, ON) (push) Has been cancelled
CI / windows (x64, Release, win32-x86-64, x64, 2.28.5, ON) (push) Has been cancelled
CI / windows-blas (Win32, ON, Release, x86, 2.28.5, ON) (push) Has been cancelled
CI / windows-blas (x64, ON, Release, x64, 2.28.5, ON) (push) Has been cancelled
CI / windows-cublas (x64, Release, ON, 11.8.0, ON, 2.28.5) (push) Has been cancelled
CI / windows-cublas (x64, Release, ON, 12.2.0, ON, 2.28.5) (push) Has been cancelled
CI / emscripten (Release) (push) Has been cancelled
CI / ios-xcode-build (Release) (push) Has been cancelled
CI / android (push) Has been cancelled
CI / quantize (push) Has been cancelled
Publish Docker image / Push Docker image to Docker Hub (map[dockerfile:.devops/main.Dockerfile platform:linux/amd64 tag:main]) (push) Has been cancelled
* Enable CPU * Follow audio lib change
66 lines
1.4 KiB
YAML
66 lines
1.4 KiB
YAML
name: Bindings Tests (Ruby)
|
|
on:
|
|
push:
|
|
paths:
|
|
- bindings/ruby/**
|
|
- src/**/*.c
|
|
- src/**/*.cpp
|
|
- src/**/*.h
|
|
- src/**/*.m
|
|
- src/**/*.metal
|
|
- include/**/*.c
|
|
- include/**/*.cpp
|
|
- include/**/*.h
|
|
- include/**/*.m
|
|
- include/**/*.metal
|
|
- ggml/**/*.c
|
|
- ggml/**/*.cpp
|
|
- ggml/**/*.h
|
|
- ggml/**/*.m
|
|
- ggml/**/*.metal
|
|
- scripts/get-flags.mk
|
|
- examples/common.h
|
|
- examples/common.cpp
|
|
- examples/common-whisper.h
|
|
- examples/common-whisper.cpp
|
|
- examples/stb_vorbis.c
|
|
- examples/miniaudio.h
|
|
pull_request:
|
|
paths:
|
|
- bindings/ruby/**
|
|
- src/**/*.c
|
|
- src/**/*.cpp
|
|
- src/**/*.h
|
|
- src/**/*.m
|
|
- src/**/*.metal
|
|
- include/**/*.c
|
|
- include/**/*.cpp
|
|
- include/**/*.h
|
|
- include/**/*.m
|
|
- include/**/*.metal
|
|
- ggml/**/*.c
|
|
- ggml/**/*.cpp
|
|
- ggml/**/*.h
|
|
- ggml/**/*.m
|
|
- ggml/**/*.metal
|
|
- scripts/get-flags.mk
|
|
- examples/common.h
|
|
- examples/common.cpp
|
|
- examples/common-whisper.h
|
|
- examples/common-whisper.cpp
|
|
- examples/stb_vorbis.c
|
|
- examples/miniaudio.h
|
|
|
|
jobs:
|
|
ubuntu-22:
|
|
runs-on: ubuntu-22.04
|
|
defaults:
|
|
run:
|
|
working-directory: bindings/ruby
|
|
steps:
|
|
- uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: '3.1'
|
|
- uses: actions/checkout@v4
|
|
- run: rake test
|