From 66c0b815a810d15cc32a0e4760462658d5319a33 Mon Sep 17 00:00:00 2001 From: superuserjr <80784472+turbodaemon@users.noreply.github.com> Date: Sun, 29 Mar 2026 22:19:06 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(ci):=20fix=20release=20pip?= =?UTF-8?q?eline=20stability?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Lower load test request_rate floor from 10 to 5 req/s — CI shared runners consistently hit 7-8, failing the absolute floor despite passing relative regression thresholds - Remove run_attempt suffix from QA image artifact names — re-running failed jobs incremented the attempt counter, causing Playwright to look for an artifact name that doesn't exist --- .github/workflows/ci-verify.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-verify.yml b/.github/workflows/ci-verify.yml index 087380b4..a9d17732 100644 --- a/.github/workflows/ci-verify.yml +++ b/.github/workflows/ci-verify.yml @@ -473,7 +473,7 @@ jobs: - name: Upload QA image artifact uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 with: - name: qa-image-${{ github.run_id }}-${{ github.run_attempt }} + name: qa-image-${{ github.run_id }} path: artifacts/qa/drydock-dev-image.tar.gz if-no-files-found: error retention-days: 1 @@ -501,7 +501,7 @@ jobs: - name: Download QA image artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: qa-image-${{ github.run_id }}-${{ github.run_attempt }} + name: qa-image-${{ github.run_id }} path: artifacts/qa - name: Load QA image @@ -616,7 +616,7 @@ jobs: - name: Download QA image artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: qa-image-${{ github.run_id }}-${{ github.run_attempt }} + name: qa-image-${{ github.run_id }} path: artifacts/qa - name: Load QA image @@ -831,7 +831,7 @@ jobs: - name: Download QA image artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: qa-image-${{ github.run_id }}-${{ github.run_attempt }} + name: qa-image-${{ github.run_id }} path: artifacts/qa - name: Load QA image @@ -1003,7 +1003,7 @@ jobs: DD_LOAD_TEST_MAX_RATE_DECREASE_PCT: '15' DD_LOAD_TEST_MAX_P95_MS: '1200' DD_LOAD_TEST_MAX_P99_MS: '2500' - DD_LOAD_TEST_MIN_REQUEST_RATE: '10' + DD_LOAD_TEST_MIN_REQUEST_RATE: '5' DD_LOAD_TEST_REGRESSION_ENFORCE: 'true' run: | set -euo pipefail