diff options
author | Eric Anholt <[email protected]> | 2019-07-25 15:46:51 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2019-07-29 12:52:39 -0700 |
commit | 5596038e2fd7451cb343ebab70bfa577bcd2b9c6 (patch) | |
tree | cf66527015f38d93619462eb5bf87ee538441930 | |
parent | 3c46778b75b6d40a1384691333d70480c96938f4 (diff) |
gitlab-ci: Enable freedreno shader-db runs.
Now that helgrind is less upset and I've completed many successful
full shader-db runs, we should be able to enable freedreno shader-db
runs for Mesa checkins on the tiny public shader-db.
Reviewed-by: Rob Clark <[email protected]>
-rwxr-xr-x | .gitlab-ci/run-shader-db.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.gitlab-ci/run-shader-db.sh b/.gitlab-ci/run-shader-db.sh index 70a434c51c6..a6093e5d57b 100755 --- a/.gitlab-ci/run-shader-db.sh +++ b/.gitlab-ci/run-shader-db.sh @@ -10,6 +10,8 @@ export LIBGL_DRIVERS_PATH=$LIBDIR/dri cd /usr/local/shader-db -env LD_PRELOAD=$LIBDIR/libv3d_noop_drm_shim.so \ - ./run -j 4 ./shaders \ - > $ARTIFACTSDIR/v3d-shader-db.txt +for driver in freedreno v3d; do + env LD_PRELOAD=$LIBDIR/lib${driver}_noop_drm_shim.so \ + ./run -j 4 ./shaders \ + > $ARTIFACTSDIR/${driver}-shader-db.txt +done |