Module: Mesa Branch: main Commit: c91f4b2efbf66c4c3fd1a945281187587e14ab37 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=c91f4b2efbf66c4c3fd1a945281187587e14ab37
Author: Guilherme Gallo <[email protected]> Date: Thu Feb 23 11:05:46 2023 -0300 ci: Use release builds in perf jobs Signed-off-by: Guilherme Gallo <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21492> --- .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 58844b46c2d..63ff6fd7bbd 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
