diff options
author | Eric Anholt <[email protected]> | 2020-06-24 10:47:37 -0700 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-06-25 17:33:28 +0000 |
commit | b5f727afeb38d813cf32ea1fa90f6079b999e6e5 (patch) | |
tree | 1556f4d3c8510361ea71f1a9d7c25821d722a4ea | |
parent | 9f1412cf3eb1c45beca9d5c973dfbf4fa84c10e8 (diff) |
ci/tracie: Fix apitrace dump using "less" which isn't in the ARM rootfs.
You would get no output during the "find the last frame" step of the trace
replay.
Reviewed-by: Tomeu Vizoso <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5433>
-rwxr-xr-x | .gitlab-ci/tracie-runner-gl.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitlab-ci/tracie-runner-gl.sh b/.gitlab-ci/tracie-runner-gl.sh index 5c47114e43f..bd58390b7c2 100755 --- a/.gitlab-ci/tracie-runner-gl.sh +++ b/.gitlab-ci/tracie-runner-gl.sh @@ -25,6 +25,9 @@ export EGL_PLATFORM="surfaceless" export DISPLAY= export WAFFLE_PLATFORM="surfaceless_egl" +# Our rootfs may not have "less", which apitrace uses during apitrace dump +export PAGER=cat + RESULTS=`pwd`/results mkdir -p $RESULTS |