egl: fix _eglMatchDriver() return type
[mesa.git] / .gitlab-ci / tracie-runner-vk.sh
1 #!/bin/sh
2
3 set -ex
4
5 INSTALL="$(pwd)/install"
6
7 # Set the Vulkan driver to use.
8 export 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.
11 export VK_LAYER_PATH="$VK_LAYER_PATH:/VulkanTools/build/etc/vulkan/explicit_layer.d"
12 export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/VulkanTools/build/lib"
13
14 # Set environment for Wine
15 export WINEDEBUG="-all"
16 export WINEPREFIX="/dxvk-wine64"
17 export WINEESYNC=1
18
19 # Set environment for DXVK
20 export DXVK_LOG_LEVEL="none"
21 export DXVK_STATE_CACHE=0
22
23 # Perform a self-test to ensure tracie is working properly.
24 python3 -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.
28 MESA_VERSION=$(cat "$INSTALL/VERSION" | sed 's/\./\\./g')
29 vulkaninfo | 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
36 PATH="/gfxreconstruct/build/bin:$PATH" \
37 python3 "$INSTALL/tracie/tracie.py" --file "$INSTALL/traces.yml" --device-name "$DEVICE_NAME"