From 36eaa3ddbb3b5b48c67ca5ff4fda42304accc559 Mon Sep 17 00:00:00 2001 From: Dan Notestein Date: Sun, 30 Nov 2025 18:01:06 -0500 Subject: [PATCH] Make benchmark-results-collector trigger manual MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The api-benchmark-script is currently commented out in e2e_benchmark_on_postgrest, so request_process_times.log is not generated. This causes the benchmark-results-collector job to fail with FileNotFoundError. Setting the trigger to manual until benchmarks are re-enabled. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .gitlab-ci.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yaml b/.gitlab-ci.yaml index ddad66251..7fdbd2e64 100644 --- a/.gitlab-ci.yaml +++ b/.gitlab-ci.yaml @@ -753,11 +753,10 @@ Trigger benchmark-results-collector: needs: - job: e2e_benchmark_on_postgrest artifacts: true # Even though variables.env is not a regular artifact, but a dotenv report, this still needs to be set to true + # NOTE: This job is set to manual because the api-benchmark-script is currently + # commented out in e2e_benchmark_on_postgrest, so request_process_times.log is not + # generated. Re-enable automatic triggering when benchmarks are re-enabled. rules: - - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH' - when: on_success - - if: '$CI_COMMIT_BRANCH == "develop"' - when: on_success - when: manual allow_failure: true variables: -- GitLab