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.
21 lines
396 B
21 lines
396 B
#!/bin/bash |
|
|
|
set -e |
|
|
|
source /ci/common.sh |
|
|
|
pkgs=( |
|
python python-pip python-setuptools |
|
ninja gcc gcc-objc git cmake |
|
cuda zlib pkgconf |
|
) |
|
|
|
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 |
|
|
|
echo "source /etc/profile" >> /ci/env_vars.sh
|
|
|