summaryrefslogtreecommitdiff
path: root/.gitlab-ci/bare-metal
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu.vizoso@collabora.com>2020-07-21 15:46:06 +0200
committerMarge Bot <eric+marge@anholt.net>2020-07-22 18:07:31 +0000
commit292882f6bc41761e17427dcf60fa177e8964ad8d (patch)
tree0f79d31002ace847d78b52a7a57ae6866b7e66df /.gitlab-ci/bare-metal
parent262731be430dea8c7650f88d88f673c1f40c173c (diff)
ci: Fix the overwriting of traces.yml for baremetal
When the lava files were moved out of the container, this stopped working which caused the traces job for Freedreno to not run any traces at all. Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Fixes: dcd171f5e9bd ("gitlab-ci: More stable URL for kernel and ramdisk artifacts, for LAVA") Acked-by: Andres Gomez <agomez@igalia.com> Acked-by: Eric Anholt <eric@anholt.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6021>
Diffstat (limited to '.gitlab-ci/bare-metal')
-rwxr-xr-x.gitlab-ci/bare-metal/init.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitlab-ci/bare-metal/init.sh b/.gitlab-ci/bare-metal/init.sh
index b7d38d175c3..797f0d73e72 100755
--- a/.gitlab-ci/bare-metal/init.sh
+++ b/.gitlab-ci/bare-metal/init.sh
@@ -16,6 +16,9 @@ export XDG_CACHE_HOME=/tmp
echo "nameserver 8.8.8.8" > /etc/resolv.conf
+# Overwrite traces.yml file with the baremetal version
+cp /install/traces-baremetal.yml /install/traces.yml
+
if sh $BARE_METAL_TEST_SCRIPT; then
OK=1
else