From c91f4b2efbf66c4c3fd1a945281187587e14ab37 Mon Sep 17 00:00:00 2001 From: Guilherme Gallo Date: Thu, 23 Feb 2023 11:05:46 -0300 Subject: [PATCH] ci: Use release builds in perf jobs Signed-off-by: Guilherme Gallo Part-of: --- .gitlab-ci/test-source-dep.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.gitlab-ci/test-source-dep.yml b/.gitlab-ci/test-source-dep.yml index 58844b4..63ff6fd 100644 --- a/.gitlab-ci/test-source-dep.yml +++ b/.gitlab-ci/test-source-dep.yml @@ -329,6 +329,13 @@ - !reference [.performance-rules, rules] - !reference [.freedreno-manual-rules, rules] allow_failure: true # see comment in .performance-rules, which we don't inherit this line from. + variables: + MINIO_ARTIFACT_NAME: "mesa-arm64-rel" + needs: + - job: debian/arm64_test + - job: debian-arm64-release + # The mesa binary is fetched from S3 + artifacts: false .nouveau-rules: stage: nouveau @@ -548,6 +555,14 @@ *virgl_file_list when: manual allow_failure: true # see comment in .performance-rules, which we don't inherit this line from. + variables: + MINIO_ARTIFACT_NAME: "mesa-amd64-rel" + needs: + - kernel+rootfs_amd64 + - debian-testing + - job: debian-release + # The release binary is fetched from S3 + artifacts: false .venus-rules: stage: layered-backends @@ -669,6 +684,14 @@ *iris_file_list when: manual allow_failure: true # see comment in .performance-rules, which we don't inherit this line from. + variables: + MINIO_ARTIFACT_NAME: "mesa-amd64-rel" + needs: + - kernel+rootfs_amd64 + - debian-testing + - job: debian-release + # The release binary is fetched from S3 + artifacts: false .anv-rules: stage: intel -- 2.7.4