From: Daniel Bevenius Date: Mon, 1 Jun 2026 05:20:19 +0000 (+0200) Subject: ci : fix path to whisper.h in examples.yml [no ci] (#3842) X-Git-Tag: upstream/1.9.2~280 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=0dff27498f704b9eab8527f03c769efb7e7f051c;p=pkg%2Fggml%2Fsources%2Fwhisper.cpp ci : fix path to whisper.h in examples.yml [no ci] (#3842) This commit updates the include path to whisper.h and also ensures that this is only built on pushes to master. --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 878c5833..b7badd51 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index 1c9ade5a..df3aa832 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -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: