diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2022-10-19 19:19:48 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2023-01-08 19:30:24 -0500 |
commit | cb20486f37c0dfce60e541e512d2ceaa6e0b701e (patch) | |
tree | d8fc623373f30d871fd8134cd6470f5dcf66e25a /ci | |
parent | 816a30abf2c76b6dd72412003c105f0f85e96913 (diff) | |
download | meson-cb20486f37c0dfce60e541e512d2ceaa6e0b701e.zip meson-cb20486f37c0dfce60e541e512d2ceaa6e0b701e.tar.gz meson-cb20486f37c0dfce60e541e512d2ceaa6e0b701e.tar.bz2 |
CI: fix cuda image breakage
From the Zen of Python: "Explicit is better than implicit."
As it turns out, it's no longer a safe assumption that pip uses
setuptools??? Well, anyway, install it properly regardless.
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/ciimage/cuda/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/ciimage/cuda/install.sh b/ci/ciimage/cuda/install.sh index 0d412e0..7c79d28 100755 --- a/ci/ciimage/cuda/install.sh +++ b/ci/ciimage/cuda/install.sh @@ -5,7 +5,7 @@ set -e source /ci/common.sh pkgs=( - python python-pip + python python-pip python-setuptools ninja gcc gcc-objc git cmake cuda zlib pkgconf ) |