diff options
author | Andres Gomez <[email protected]> | 2020-03-18 11:52:53 +0200 |
---|---|---|
committer | Andres Gomez <[email protected]> | 2020-03-23 17:17:56 +0200 |
commit | 8bc3d6574c4b0acf9e9b50f6a63648f149c317c3 (patch) | |
tree | 85d8dceedbf12ef6f066a97cadf72b2fda55d0fd /.gitlab-ci/container | |
parent | 7ac8bb33cd6025f805a390e7647506e932f4db0d (diff) |
gitlab-ci: add python3-requests to the test-vk container
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 <module>
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 <[email protected]>
Reviewed-by: Alexandros Frantzis <[email protected]>
Reviewed-by: Michel Dänzer <[email protected]>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4237>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4237>
Diffstat (limited to '.gitlab-ci/container')
-rw-r--r-- | .gitlab-ci/container/x86_test-vk.sh | 1 |
1 files changed, 1 insertions, 0 deletions
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 |