1#!/bin/sh 2 3set -ex 4 5INSTALL="$(pwd)/install" 6 7# Set the Vulkan driver to use. 8export VK_ICD_FILENAMES="$(pwd)/install/share/vulkan/icd.d/${VK_DRIVER}_icd.x86_64.json" 9 10# Set environment for VulkanTools' VK_LAYER_LUNARG_screenshot layer. 11export VK_LAYER_PATH="$VK_LAYER_PATH:/VulkanTools/build/etc/vulkan/explicit_layer.d" 12export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/VulkanTools/build/lib" 13 14# Set environment for Wine 15export WINEDEBUG="-all" 16export WINEPREFIX="/dxvk-wine64" 17export WINEESYNC=1 18 19# Set environment for DXVK 20export DXVK_LOG_LEVEL="none" 21export DXVK_STATE_CACHE=0 22 23# Perform a self-test to ensure tracie is working properly. 24python3 -m pytest -v --pyargs $INSTALL/tracie/tests/test.py 25 26# Sanity check to ensure that our environment is sufficient to make our tests 27# run against the Mesa built by CI, rather than any installed distro version. 28MESA_VERSION=$(cat "$INSTALL/VERSION" | sed 's/\./\\./g') 29vulkaninfo | grep "Mesa $MESA_VERSION\(\s\|$\)" 30 31# Run gfxreconstruct traces against the host's running X server (xvfb 32# doesn't have DRI3 support). 33# Set the DISPLAY env variable in each gitlab-runner's configuration 34# file: 35# https://docs.gitlab.com/runner/configuration/advanced-configuration.html#the-runners-section 36PATH="/gfxreconstruct/build/bin:$PATH" \ 37 python3 "$INSTALL/tracie/tracie.py" --file "$INSTALL/traces-$DRIVER_NAME.yml" --device-name "$DEVICE_NAME" 38