From d4aa7ed21b72bee299510820260c23f0106ec478 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Mon, 11 Aug 2025 18:51:57 +0200 Subject: [PATCH] ci/vkd3d: ensure test-runner.sh has the right mode And just like the other executable above, instead of adding `chmod` after `mkdir`+`cp`, let's use `install` which does all of the above in one nice command. Part-of: --- .gitlab-ci/container/build-vkd3d-proton.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.gitlab-ci/container/build-vkd3d-proton.sh b/.gitlab-ci/container/build-vkd3d-proton.sh index c6b6c1481ef..c0d411573f1 100644 --- a/.gitlab-ci/container/build-vkd3d-proton.sh +++ b/.gitlab-ci/container/build-vkd3d-proton.sh @@ -44,10 +44,7 @@ ninja -C build install install -m755 -t "${VKD3D_PROTON_DST_DIR}/" build/tests/d3d12 -mkdir "$VKD3D_PROTON_DST_DIR/tests" -cp \ - "tests/test-runner.sh" \ - "$VKD3D_PROTON_DST_DIR/tests/" +install -m755 -t "${VKD3D_PROTON_DST_DIR}/tests" tests/test-runner.sh popd # Archive and upload vkd3d-proton for use as a LAVA overlay, if the archive doesn't exist yet