From 1afb9a764fc49a09fd75901546eccdd7d32b9c22 Mon Sep 17 00:00:00 2001 From: Dmytro Yurchenko Date: Tue, 5 Dec 2023 14:01:03 +0100 Subject: [PATCH] Rename CircleCI job --- .gitlab/benchmarks.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.gitlab/benchmarks.yml b/.gitlab/benchmarks.yml index 45020a59b6a..66043b275f2 100644 --- a/.gitlab/benchmarks.yml +++ b/.gitlab/benchmarks.yml @@ -40,7 +40,7 @@ microbenchmarks: KUBERNETES_SERVICE_ACCOUNT_OVERWRITE: dd-trace-php FF_USE_LEGACY_KUBERNETES_EXECUTION_STRATEGY: "true" -wait_for_circle_ci_release: +download_circle_ci_release: stage: benchmarks rules: - if: $CI_COMMIT_REF_NAME == "master" @@ -52,7 +52,13 @@ wait_for_circle_ci_release: image: 486234852809.dkr.ecr.us-east-1.amazonaws.com/ci/benchmarking-platform:php_laravel-realworld script: - git clone --branch php/laravel-realworld https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.ddbuild.io/DataDog/benchmarking-platform platform && cd platform - - ./steps/wait-for-circle-ci-release.sh + - ./steps/download-circle-ci-release.sh + artifacts: + name: "artifacts" + when: always + paths: + - platform/artifacts/ + expire_in: 3 months allow_failure: true .macrobenchmarks: @@ -62,7 +68,7 @@ wait_for_circle_ci_release: when: always - when: manual tags: ["runner:apm-k8s-same-cpu"] - needs: ["wait_for_circle_ci_release"] + needs: ["download_circle_ci_release"] interruptible: true timeout: 1h image: 486234852809.dkr.ecr.us-east-1.amazonaws.com/ci/benchmarking-platform:php_laravel-realworld @@ -73,7 +79,7 @@ wait_for_circle_ci_release: name: "artifacts" when: always paths: - - artifacts/ + - platform/artifacts/ expire_in: 3 months variables: FF_USE_LEGACY_KUBERNETES_EXECUTION_STRATEGY: "true"