diff options
| author | Daniel Mensinger <daniel@mensinger-ka.de> | 2021-06-07 17:20:02 +0200 |
|---|---|---|
| committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2021-06-11 11:10:55 +0200 |
| commit | 25f2d8826e7c99d3e022e5774ff4530c2af5b0ba (patch) | |
| tree | ff822df754380dde5d1843225985fb80b76b8d31 /ci/ciimage/cuda | |
| parent | 1ab0694556b6c0117b7b5072ec906dee2029adec (diff) | |
| download | meson-25f2d8826e7c99d3e022e5774ff4530c2af5b0ba.tar.gz | |
ci: Fix CI image builder
Diffstat (limited to 'ci/ciimage/cuda')
| -rwxr-xr-x | ci/ciimage/cuda/install.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ci/ciimage/cuda/install.sh b/ci/ciimage/cuda/install.sh index 011099d49..0d412e00c 100755 --- a/ci/ciimage/cuda/install.sh +++ b/ci/ciimage/cuda/install.sh @@ -2,8 +2,10 @@ set -e +source /ci/common.sh + pkgs=( - python python-setuptools python-wheel python-pytest-xdist python-jsonschema + python python-pip ninja gcc gcc-objc git cmake cuda zlib pkgconf ) @@ -11,6 +13,7 @@ pkgs=( PACMAN_OPTS='--needed --noprogressbar --noconfirm' pacman -Syu $PACMAN_OPTS "${pkgs[@]}" +install_minimal_python_packages # Manually remove cache to avoid GitHub space restrictions rm -rf /var/cache/pacman |
