mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 15:22:18 +00:00
21 lines
473 B
Bash
21 lines
473 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
if [ -z "$VK_DRIVER" ]; then
|
||
|
echo 'VK_DRIVER must be to something like "radeon" or "intel" for the test run'
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
INSTALL=`pwd`/install
|
||
|
|
||
|
# Set up the driver environment.
|
||
|
export LD_LIBRARY_PATH=`pwd`/install/lib/
|
||
|
export VK_ICD_FILENAMES=`pwd`/install/share/vulkan/icd.d/"$VK_DRIVER"_icd.x86_64.json
|
||
|
|
||
|
# To store Fossilize logs on failure.
|
||
|
RESULTS=`pwd`/results
|
||
|
mkdir -p results
|
||
|
|
||
|
"$INSTALL/fossils/fossils.sh" "$INSTALL/fossils.yml" "$RESULTS"
|