blob: 4ebab6d79f4c773291c0e15bcd60b93047d800c7 [file] [log] [blame]
Andres Gomez0ac731b12020-02-20 18:26:30 +02001#!/bin/sh
2
3set -ex
4
Tomeu Vizoso92f3c512020-03-24 12:58:30 +01005INSTALL="$(pwd)/install"
Andres Gomez0ac731b12020-02-20 18:26:30 +02006
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
Andres Gomez07e5b3a2020-03-20 20:26:48 +020014# 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
Andres Gomez0ac731b12020-02-20 18:26:30 +020023# Perform a self-test to ensure tracie is working properly.
Pablo Saavedra550a4f72020-05-04 18:11:08 +020024python3 -m pytest -v --pyargs $INSTALL/tracie/tests/test.py
Andres Gomez0ac731b12020-02-20 18:26:30 +020025
Alexandros Frantzis4c6ce822020-04-09 18:40:38 +030026# 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
Andres Gomez0ac731b12020-02-20 18:26:30 +020031# 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" \
Tomeu Vizoso7d5f4d32020-08-05 10:17:26 +020037 python3 "$INSTALL/tracie/tracie.py" --file "$INSTALL/traces-$DRIVER_NAME.yml" --device-name "$DEVICE_NAME"