From cdd508dddd372591b577c7630eaf8bfe3fb052f1 Mon Sep 17 00:00:00 2001 From: David Heidelberg Date: Mon, 15 Aug 2022 10:05:02 +0200 Subject: [PATCH] ci: use apt-get in x86_test-vk instead of apt apt shouldn't be used in CI, see: https://unix.stackexchange.com/questions/590699/should-i-use-apt-or-apt-get-in-shell-scripting Acked-by: Tomeu Vizoso Signed-off-by: David Heidelberg Part-of: --- .gitlab-ci/container/debian/x86_test-vk.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci/container/debian/x86_test-vk.sh b/.gitlab-ci/container/debian/x86_test-vk.sh index b0ea3fa3c5c..e092b1f035c 100644 --- a/.gitlab-ci/container/debian/x86_test-vk.sh +++ b/.gitlab-ci/container/debian/x86_test-vk.sh @@ -66,13 +66,13 @@ dpkg --add-architecture i386 # Install a more recent version of Wine than exists in Debian. apt-key add .gitlab-ci/container/debian/winehq.gpg.key apt-add-repository https://dl.winehq.org/wine-builds/debian/ -apt update -qyy +apt-get update -q # Needed for Valve's tracing jobs to collect information about the graphics # hardware on the test devices. pip3 install gfxinfo-mupuf==0.0.9 -apt install -y --no-remove --install-recommends winehq-stable +apt-get install -y --no-remove --install-recommends winehq-stable ############### Install DXVK