aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci/bare-metal/fastboot.sh
diff options
context:
space:
mode:
authorRohan Garg <[email protected]>2020-01-28 15:19:53 +0100
committerMarge Bot <[email protected]>2020-06-25 17:33:28 +0000
commit7406d627c8864a8754efed14d0ad9d6a853325ac (patch)
tree5c46fcde6ff4da52e1cafd40095ca6d812a70a8e /.gitlab-ci/bare-metal/fastboot.sh
parentacf9d8b75d9ae39c812b9b2ed41ff0078bd35c42 (diff)
ci: Include trace replay support in ARM rootfses.
Builds the renderdoc and apitrace programs so we can replay GL traces on DUTs. [Separated out from 5472's commit that also enabled the jobs in LAVA, dropped unnecessary python packages from arm_build, fixed up arm64_test build, traces-db in baremetal, new commit message by anholt] Signed-off-by: Rohan Garg <[email protected]> Signed-off-by: Tomeu Vizoso <[email protected]> Reviewed-by: Eric Anholt <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5433>
Diffstat (limited to '.gitlab-ci/bare-metal/fastboot.sh')
-rwxr-xr-x.gitlab-ci/bare-metal/fastboot.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci/bare-metal/fastboot.sh b/.gitlab-ci/bare-metal/fastboot.sh
index 9a4e6f64959..ad4a665055b 100755
--- a/.gitlab-ci/bare-metal/fastboot.sh
+++ b/.gitlab-ci/bare-metal/fastboot.sh
@@ -60,7 +60,8 @@ rsync -a --delete $BM_ROOTFS/ rootfs/
# these devices use it and it would take up space in the initrd.
pushd rootfs
find -H | \
- egrep -v "external/(openglcts|vulkancts|amber|glslang|spirv-tools)" | \
+ egrep -v "external/(openglcts|vulkancts|amber|glslang|spirv-tools)" |
+ egrep -v "traces-db|apitrace|renderdoc|python" | \
cpio -H newc -o | \
xz --check=crc32 -T4 - > $CI_PROJECT_DIR/rootfs.cpio.gz
popd