From 8bc3d6574c4b0acf9e9b50f6a63648f149c317c3 Mon Sep 17 00:00:00 2001 From: Andres Gomez Date: Wed, 18 Mar 2020 11:52:53 +0200 Subject: [PATCH] gitlab-ci: add python3-requests to the test-vk container MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit After 90a39af5f65 ("ci: Drop the git dependency in tracie"), we have this error in the radv-polaris10-traces job: " ... + /builds/tanty/mesa/artifacts/tracie/tests/test.sh tracie_succeeds_if_all_images_match: Fail Traceback (most recent call last): File "/tmp/tracie.test.glY0O23HJo/tracie.py", line 6, in import requests ModuleNotFoundError: No module named 'requests' ... " v2: - Updated commit log to be more descriptive (Michel). Fixes: 90a39af5f65 ("ci: Drop the git dependency in tracie") Signed-off-by: Andres Gomez Reviewed-by: Alexandros Frantzis Reviewed-by: Michel Dänzer Tested-by: Marge Bot Part-of: --- .gitlab-ci.yml | 2 +- .gitlab-ci/container/x86_test-vk.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f80bdac7114..2f9cc15a70d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -140,7 +140,7 @@ x86_test-gl: x86_test-vk: extends: x86_build variables: - FDO_DISTRIBUTION_TAG: &x86_test-vk "2020-03-16" + FDO_DISTRIBUTION_TAG: &x86_test-vk "2020-03-23" # Debian 9 based x86 build image (old LLVM) x86_build_old: diff --git a/.gitlab-ci/container/x86_test-vk.sh b/.gitlab-ci/container/x86_test-vk.sh index ba52eea32bc..80652420b5f 100644 --- a/.gitlab-ci/container/x86_test-vk.sh +++ b/.gitlab-ci/container/x86_test-vk.sh @@ -63,6 +63,7 @@ apt-get install -y --no-remove \ python \ python3-distutils \ python3-pil \ + python3-requests \ python3-yaml \ xauth \ xvfb -- 2.30.2