From 1f08d75272a11dbb8ad94b75fdfe56dd4a9b5563 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Mon, 21 Apr 2025 20:49:09 +0200 Subject: [PATCH] ci/build: drop expectation files from python-artifacts The ones used come from the mesa build artifacts. Part-of: --- .gitlab-ci/prepare-artifacts-python.sh | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/.gitlab-ci/prepare-artifacts-python.sh b/.gitlab-ci/prepare-artifacts-python.sh index 30074ce28a7..5d8a3cb4295 100755 --- a/.gitlab-ci/prepare-artifacts-python.sh +++ b/.gitlab-ci/prepare-artifacts-python.sh @@ -23,32 +23,6 @@ cp -Rp .gitlab-ci/bare-metal artifacts/ cp -Rp .gitlab-ci/lava artifacts/ cp -Rp .gitlab-ci/bin/*_logger.py artifacts/ -mapfile -t duplicate_files < <( - find src/ -path '*/ci/*' \ - \( \ - -name '*.txt' \ - -o -name '*.toml' \ - -o -name '*traces*.yml' \ - \) \ - -exec basename -a {} + | sort | uniq -d -) -if [ ${#duplicate_files[@]} -gt 0 ]; then - echo 'Several files with the same name in various ci/ folders:' - printf -- ' %s\n' "${duplicate_files[@]}" - exit 1 -fi - -if [ -d "src/" ]; then - find src/ -path '*/ci/*' \ - \( \ - -name '*.txt' \ - -o -name '*.toml' \ - -o -name '*traces*.yml' \ - \) \ - -exec cp -p {} artifacts/ \; -fi -cp -Rp .gitlab-ci/*.txt artifacts/ - if [ -n "$S3_ARTIFACT_NAME" ]; then # Pass needed files to the test stage S3_ARTIFACT_TAR="$S3_ARTIFACT_NAME.tar.zst"