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.
47 lines
693 B
47 lines
693 B
#!/bin/bash |
|
|
|
### |
|
### Common functions for CI builder files. |
|
### All functions can be accessed in install.sh via: |
|
### |
|
### $ source /ci/common.sh |
|
### |
|
|
|
set -e |
|
set -x |
|
|
|
base_python_pkgs=( |
|
pytest |
|
pytest-xdist |
|
coverage |
|
codecov |
|
jsonschema |
|
) |
|
|
|
python_pkgs=( |
|
cython |
|
gobject |
|
PyGObject |
|
lxml |
|
gcovr |
|
) |
|
|
|
dub_fetch() { |
|
set +e |
|
for (( i=1; i<=24; ++i )); do |
|
dub fetch "$@" |
|
(( $? == 0 )) && break |
|
|
|
echo "Dub Fetch failed. Retrying in $((i*5))s" |
|
sleep $((i*5)) |
|
done |
|
set -e |
|
} |
|
|
|
install_minimal_python_packages() { |
|
python3 -m pip install "${base_python_pkgs[@]}" $* |
|
} |
|
|
|
install_python_packages() { |
|
python3 -m pip install "${base_python_pkgs[@]}" "${python_pkgs[@]}" $* |
|
}
|
|
|