diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9bef125c8..ce3a01168 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,7 +31,7 @@ env: LLAMA_LOG_COLORS: 1 LLAMA_LOG_PREFIX: 1 LLAMA_LOG_TIMESTAMPS: 1 - CREATE_ARTIFACTS: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' || contains(github.event.head_commit.message, '[pack]') }} + CREATE_ARTIFACTS: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' || contains(github.event.pull_request.labels.*.name, 'artifacts') }} jobs: macOS-latest-cmake-arm64: diff --git a/src/llama.cpp b/src/llama.cpp index 5f478a888..e8cfe5012 100644 --- a/src/llama.cpp +++ b/src/llama.cpp @@ -10064,4 +10064,3 @@ void llama_perf_context_reset(struct llama_context * ctx) { ctx->t_eval_us = ctx->n_eval = 0; ctx->t_p_eval_us = ctx->n_p_eval = 0; } -