From 0b8f3124278e645df1e68007e8e22842111d4f68 Mon Sep 17 00:00:00 2001 From: Maxime Epain Date: Thu, 29 Aug 2024 11:41:51 +0200 Subject: [PATCH] fix: Benchmark Upload --- .gitlab-ci.yml | 1 + BenchmarkTests/Makefile | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 094f4676f7..854f719c89 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -300,6 +300,7 @@ Benchmark Test (upload to s8s): stage: benchmark-test rules: - if: '$CI_COMMIT_BRANCH == $DEVELOP_BRANCH' + allow_failure: true artifacts: paths: - artifacts diff --git a/BenchmarkTests/Makefile b/BenchmarkTests/Makefile index 17e3d6fcb2..e0478c0f52 100644 --- a/BenchmarkTests/Makefile +++ b/BenchmarkTests/Makefile @@ -17,7 +17,7 @@ endif build: @$(ECHO_SUBTITLE2) "make build" set -eo pipefail; \ - OTEL_SWIFT=1 xcodebuild \ + DD_BENCHMARK=1 OTEL_SWIFT=1 xcodebuild \ -project BenchmarkTests.xcodeproj \ -scheme Runner \ -sdk iphonesimulator \ @@ -31,7 +31,7 @@ archive: @$(ECHO_SUBTITLE2) "make archive VERSION='$(VERSION)'" @xcrun agvtool new-version "$(VERSION)" set -eo pipefail; \ - BENCHMARK=1 OTEL_SWIFT=1 xcodebuild \ + DD_BENCHMARK=1 OTEL_SWIFT=1 xcodebuild \ -project BenchmarkTests.xcodeproj \ -scheme Runner \ -sdk iphoneos \