ci: Allow the artifact copy to fail.

If the build fails some artifact files might not exist, and we
don't want the script to fail just because of that.
This commit is contained in:
Giovanni Mascellani
2023-10-20 21:39:41 +02:00
committed by Alexandre Julliard
parent 31346e2cba
commit 2955232656
Notes: Alexandre Julliard 2023-11-06 23:17:45 +01:00
Approved-by: Henri Verbeet (@hverbeet)
Approved-by: Alexandre Julliard (@julliard)
Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/423
4 changed files with 5 additions and 5 deletions

View File

@@ -17,6 +17,6 @@ cd build
touch ../pipeline_failed
mkdir -p ../artifacts/$COMMIT
rsync -Rr config.log test-suite.log tests/*.log tests/*/*.log ../artifacts/$COMMIT
rsync -Rr config.log test-suite.log tests/*.log tests/*/*.log ../artifacts/$COMMIT || true
git reset --hard