parent
7896d945ff
commit
c7326aa098
5 changed files with 36 additions and 6 deletions
@ -0,0 +1,5 @@ |
||||
{ |
||||
"base_image": "archlinux:latest", |
||||
"args": ["--only", "cuda"], |
||||
"env": {} |
||||
} |
@ -0,0 +1,18 @@ |
||||
#!/bin/bash |
||||
|
||||
set -e |
||||
|
||||
pkgs=( |
||||
python python-setuptools python-wheel python-pytest-xdist python-jsonschema |
||||
ninja gcc gcc-objc git cmake |
||||
cuda zlib pkgconf |
||||
) |
||||
|
||||
PACMAN_OPTS='--needed --noprogressbar --noconfirm' |
||||
|
||||
pacman -Syu $PACMAN_OPTS "${pkgs[@]}" |
||||
|
||||
# Manually remove cache to avoid GitHub space restrictions |
||||
rm -rf /var/cache/pacman |
||||
|
||||
echo "source /etc/profile.d/cuda.sh" >> /ci/env_vars.sh |
Loading…
Reference in new issue