~mmach/netext73/mesa-haswell

« back to all changes in this revision

Viewing changes to .gitlab-ci/fossilize-runner.sh

  • Committer: mmach
  • Date: 2022-09-22 19:56:13 UTC
  • Revision ID: netbit73@gmail.com-20220922195613-wtik9mmy20tmor0i
2022-09-22 21:17:09

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
set -ex
4
 
 
5
 
if [ -z "$VK_DRIVER" ]; then
6
 
   echo 'VK_DRIVER must be to something like "radeon" or "intel" for the test run'
7
 
   exit 1
8
 
fi
9
 
 
10
 
INSTALL=`pwd`/install
11
 
 
12
 
# Set up the driver environment.
13
 
export LD_LIBRARY_PATH=`pwd`/install/lib/
14
 
export VK_ICD_FILENAMES=`pwd`/install/share/vulkan/icd.d/"$VK_DRIVER"_icd.x86_64.json
15
 
 
16
 
# To store Fossilize logs on failure.
17
 
RESULTS=`pwd`/results
18
 
mkdir -p results
19
 
 
20
 
"$INSTALL/fossils/fossils.sh" "$INSTALL/fossils.yml" "$RESULTS"