The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
392 B
18 lines
392 B
#!/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
|
|
|