summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorHelen Koike <helen.koike@collabora.com>2023-03-15 21:49:52 -0300
committerMarge Bot <emma+marge@anholt.net>2023-03-16 22:13:05 +0000
commitcbe11f6f8d297b52e7a9824dc404b9f99dccfbf0 (patch)
treeb9fc93b54489d196dffc6416e773dcdb7fba51ab /.gitlab-ci
parent89590c1d84da94894f52882e8de30508af6600c4 (diff)
android/ci: fix removal of inexistent file
file libEGL_mesa.so doesn't exist and the rm command was failing, replace by libGLES_mesa.so which exists. Signed-off-by: Helen Koike <helen.koike@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21941>
Diffstat (limited to '.gitlab-ci')
-rwxr-xr-x.gitlab-ci/cuttlefish-runner.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci/cuttlefish-runner.sh b/.gitlab-ci/cuttlefish-runner.sh
index 1f6563051fa..2424f6d42ea 100755
--- a/.gitlab-ci/cuttlefish-runner.sh
+++ b/.gitlab-ci/cuttlefish-runner.sh
@@ -62,7 +62,7 @@ $ADB push install/deqp-$DEQP_SUITE.toml /data/.
$ADB shell rm /vendor/lib/dri/${ANDROID_DRIVER}_dri.so
$ADB shell rm /vendor/lib/libglapi.so
-$ADB shell rm /vendor/lib/egl/libEGL_mesa.so
+$ADB shell rm /vendor/lib/egl/libGLES_mesa.so
$ADB shell rm /vendor/lib/egl/libEGL_angle.so
$ADB shell rm /vendor/lib/egl/libEGL_emulation.so