From 57485f9a3d12b6039ec41949258addb0c4321ca9 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Thu, 13 Jun 2024 16:12:04 +0200 Subject: [PATCH] ci/vkd3d: print URL to the vkd3d-proton.log file to make it easier to access Part-of: --- .gitlab-ci/vkd3d-proton/run.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci/vkd3d-proton/run.sh b/.gitlab-ci/vkd3d-proton/run.sh index 0a181d552fe..8eb94d3c746 100755 --- a/.gitlab-ci/vkd3d-proton/run.sh +++ b/.gitlab-ci/vkd3d-proton/run.sh @@ -55,7 +55,7 @@ if ! /vkd3d-proton-tests/x64/bin/d3d12 > "$RESULTS/vkd3d-proton-log.txt"; then # Check if the executable finished (ie. no segfault). if ! grep "tests executed" "$RESULTS/vkd3d-proton-log.txt" > /dev/null; then - error "Failed, see vkd3d-proton-log.txt!" + error "Failed, see ${ARTIFACTS_BASE_URL}/results/vkd3d-proton-log.txt" exit 1 fi @@ -63,7 +63,7 @@ then RESULTSFILE="$RESULTS/$VKD3D_PROTON_RESULTS.txt" mkdir -p .gitlab-ci/vkd3d-proton if ! grep "Test failed" "$RESULTS"/vkd3d-proton-log.txt > "$RESULTSFILE"; then - error "Failed to get the list of failing tests, see vkd3d-proton-log.txt!" + error "Failed to get the list of failing tests, see ${ARTIFACTS_BASE_URL}/results/vkd3d-proton-log.txt" exit 1 fi @@ -78,7 +78,7 @@ then # Make sure that the failures found in this run match the current expectation if ! diff --color=always -u ".gitlab-ci/vkd3d-proton/$VKD3D_PROTON_RESULTS.txt.baseline" "$RESULTSFILE"; then - error "Changes found, see vkd3d-proton-log.txt!" + error "Changes found, see ${ARTIFACTS_BASE_URL}/results/vkd3d-proton-log.txt" exit 1 fi fi