mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 04:50:11 +01:00
ci/dxvk: Use common results dir
Signed-off-by: Daniel Stone <daniels@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/31110>
This commit is contained in:
parent
476a5aab34
commit
b8c9bbabcf
1 changed files with 3 additions and 8 deletions
|
|
@ -14,11 +14,6 @@ fi
|
|||
|
||||
INSTALL=$(realpath -s "$PWD"/install)
|
||||
|
||||
RESULTS=$(realpath -s "$PWD"/results)
|
||||
|
||||
# Make sure the results folder exists
|
||||
mkdir -p "$RESULTS"
|
||||
|
||||
# Set up the driver environment.
|
||||
# Modifiying here directly LD_LIBRARY_PATH may cause problems when
|
||||
# using a command wrapper. Hence, we will just set it when running the
|
||||
|
|
@ -51,7 +46,7 @@ if ! vulkaninfo | grep driverInfo | tee /tmp/version.txt | grep -F "Mesa $MESA_V
|
|||
fi
|
||||
|
||||
# Gather the list expected failures
|
||||
EXPECTATIONFILE="$RESULTS/$GPU_VERSION-vkd3d-fails.txt"
|
||||
EXPECTATIONFILE="$RESULTS_DIR/$GPU_VERSION-vkd3d-fails.txt"
|
||||
if [ -f "$INSTALL/$GPU_VERSION-vkd3d-fails.txt" ]; then
|
||||
grep -vE '^(#|$)' "$INSTALL/$GPU_VERSION-vkd3d-fails.txt" | sort > "$EXPECTATIONFILE"
|
||||
else
|
||||
|
|
@ -90,8 +85,8 @@ fi
|
|||
|
||||
printf "%s\n" "Running vkd3d-proton testsuite..."
|
||||
|
||||
LOGFILE="$RESULTS/vkd3d-proton-log.txt"
|
||||
TEST_LOGS="$PWD/test-logs"
|
||||
LOGFILE="$RESULTS_DIR/vkd3d-proton-log.txt"
|
||||
TEST_LOGS="$RESULTS_DIR/test-logs"
|
||||
(cd /vkd3d-proton-tests && tests/test-runner.sh x64/bin/d3d12 --jobs "${FDO_CI_CONCURRENT:-4}" --output-dir "$TEST_LOGS" | tee "$LOGFILE")
|
||||
|
||||
printf '\n\n'
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue