]> git.djapps.eu Git - pkg/ggml/sources/whisper.cpp/commitdiff
ci : fix path to whisper.h in examples.yml [no ci] (#3842)
authorDaniel Bevenius <redacted>
Mon, 1 Jun 2026 05:20:19 +0000 (07:20 +0200)
committerGitHub <redacted>
Mon, 1 Jun 2026 05:20:19 +0000 (07:20 +0200)
This commit updates the include path to whisper.h and also ensures that
this is only built on pushes to master.

.github/workflows/build.yml
.github/workflows/examples.yml

index 878c5833eaa466e7b09e3ed739ebdd98d4bad0e6..b7badd510414c53d0078357ba6c4f1d0afc42652 100644 (file)
@@ -29,8 +29,9 @@ on:
   pull_request:
     types: [opened, synchronize, reopened]
     paths-ignore:
-      - 'bindings/ruby/**' # handled by bindings-ruby.yml
-      - 'bindings/go/**'   # handled by bindings-go.yml
+      - 'bindings/ruby/**'        # handled by bindings-ruby.yml
+      - 'bindings/go/**'          # handled by bindings-go.yml
+      - 'examples/addon.node/**'  # handled by examples.yml
   workflow_dispatch:
     inputs:
       create_release:
index 1c9ade5a30056240cf4464abef36a5e9b9593a28..df3aa832c2e9cf81a29052ff22aea9c63542c14d 100644 (file)
@@ -1,13 +1,15 @@
 name: Examples Tests
 on:
   push:
+    branches:
+      - master
     paths:
       - examples/addon.node/**
-      - whisper.h
+      - include/whisper.h
   pull_request:
     paths:
       - examples/addon.node/**
-      - whisper.h
+      - include/whisper.h
 
 jobs:
   addon_node-ubuntu-22: