mirror of https://github.com/kivy/kivy.git
191 lines
5.2 KiB
Bash
191 lines
5.2 KiB
Bash
#!/bin/bash
|
|
set -e -x
|
|
|
|
generate_sdist() {
|
|
python3 -m pip install cython
|
|
python3 setup.py sdist --formats=gztar
|
|
python3 -m pip uninstall cython -y
|
|
}
|
|
|
|
install_kivy_test_run_apt_deps() {
|
|
sudo apt-get update
|
|
sudo apt-get -y install libsdl2-dev libsdl2-ttf-dev libsdl2-image-dev libsdl2-mixer-dev
|
|
sudo apt-get -y install libgstreamer1.0-dev gstreamer1.0-alsa gstreamer1.0-plugins-base
|
|
sudo apt-get -y install libsmpeg-dev libswscale-dev libavformat-dev libavcodec-dev libjpeg-dev libtiff5-dev libx11-dev libmtdev-dev
|
|
sudo apt-get -y install build-essential libgl1-mesa-dev libgles2-mesa-dev
|
|
sudo apt-get -y install xvfb pulseaudio xsel
|
|
}
|
|
|
|
install_python() {
|
|
sudo apt-get -y install python3 python3-dev python3-setuptools
|
|
}
|
|
|
|
install_kivy_test_run_pip_deps() {
|
|
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
|
|
python3 get-pip.py --user
|
|
|
|
python3 -m pip install --upgrade pip setuptools wheel
|
|
CYTHON_INSTALL=$(
|
|
KIVY_NO_CONSOLELOG=1 python3 -c \
|
|
"from kivy.tools.packaging.cython_cfg import get_cython_versions; print(get_cython_versions()[0])" \
|
|
--config "kivy:log_level:error"
|
|
)
|
|
python3 -m pip install -I "$CYTHON_INSTALL" coveralls
|
|
}
|
|
|
|
install_kivy_test_wheel_run_pip_deps() {
|
|
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
|
|
python3 get-pip.py --user
|
|
|
|
python3 -m pip install --upgrade pip setuptools wheel
|
|
}
|
|
|
|
prepare_env_for_unittest() {
|
|
/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background \
|
|
--exec /usr/bin/Xvfb -- :99 -screen 0 1280x720x24 -ac +extension GLX
|
|
}
|
|
|
|
install_kivy() {
|
|
path="$(pwd)"
|
|
ln -s "$path" ~/base_kivy
|
|
cd ~/base_kivy
|
|
python3 -m pip install -e "$(pwd)[dev,full]"
|
|
cd "$path"
|
|
}
|
|
|
|
install_kivy_manylinux_wheel() {
|
|
root="$(pwd)"
|
|
python3 -m pip install cython
|
|
python3 setup.py install --build_examples
|
|
python3 -m pip uninstall cython -y
|
|
cd ~
|
|
|
|
version=$(python3 -c "import sys; print('{}{}'.format(sys.version_info.major, sys.version_info.minor))")
|
|
kivy_fname=$(ls $root/dist/Kivy-*$version*.whl | awk '{ print length, $0 }' | sort -n -s | cut -d" " -f2- | head -n1)
|
|
python3 -m pip install "$kivy_fname[full,dev]"
|
|
}
|
|
|
|
install_kivy_sdist() {
|
|
root="$(pwd)"
|
|
cd ~
|
|
|
|
kivy_fname=$(ls $root/dist/Kivy-*.tar.gz)
|
|
python3 -m pip install "$kivy_fname[full,dev]"
|
|
}
|
|
|
|
test_kivy() {
|
|
rm -rf kivy/tests/build || true
|
|
KIVY_NO_ARGS=1 python3 -m pytest --cov=kivy --cov-report term --cov-branch "$(pwd)/kivy/tests"
|
|
}
|
|
|
|
test_kivy_install() {
|
|
cd ~
|
|
python3 -c 'import kivy'
|
|
test_path=$(KIVY_NO_CONSOLELOG=1 python3 -c 'import kivy.tests as tests; print(tests.__path__[0])' --config "kivy:log_level:error")
|
|
cd "$test_path"
|
|
|
|
cat > .coveragerc << 'EOF'
|
|
[run]
|
|
plugins = kivy.tools.coverage
|
|
|
|
EOF
|
|
KIVY_TEST_AUDIO=0 KIVY_NO_ARGS=1 python3 -m pytest .
|
|
}
|
|
|
|
upload_coveralls() {
|
|
python3 -m coveralls
|
|
}
|
|
|
|
validate_pep8() {
|
|
make style
|
|
}
|
|
|
|
generate_docs() {
|
|
make html
|
|
}
|
|
|
|
upload_docs_to_server() {
|
|
versions=$1
|
|
branch=$2
|
|
ip=$3
|
|
|
|
if [ ! -d ~/.ssh ]; then
|
|
mkdir ~/.ssh
|
|
fi
|
|
printf "%s" "$UBUNTU_UPLOAD_KEY" > ~/.ssh/id_rsa
|
|
chmod 600 ~/.ssh/id_rsa
|
|
echo -e "Host $ip\n\tStrictHostKeyChecking no\n" >>~/.ssh/config
|
|
|
|
for version in $versions; do
|
|
if [ "$version" == "${branch}" ]; then
|
|
echo "[$(echo $versions | tr ' ' ', ' | sed -s 's/\([^,]\+\)/"\1"/g')]" > versions.json
|
|
rsync --force -e "ssh -p 2457" versions.json root@$ip:/web/doc/
|
|
rsync --delete --force -r -e "ssh -p 2457" ./doc/build/html/ root@$ip:/web/doc/$version
|
|
fi
|
|
done
|
|
}
|
|
|
|
generate_manylinux2010_wheels() {
|
|
image=$1
|
|
|
|
mkdir dist
|
|
chmod +x .ci/build-wheels-linux.sh
|
|
docker run --rm -v "$(pwd):/io" "$image" "/io/.ci/build-wheels-linux.sh"
|
|
sudo rm dist/*-linux*
|
|
}
|
|
|
|
generate_armv7l_wheels() {
|
|
image=$1
|
|
|
|
mkdir dist dist_armv6l
|
|
docker build -f .ci/Dockerfile.armv7l -t kivy/kivy-armv7l --build-arg image="$image" .
|
|
docker cp "$(docker create kivy/kivy-armv7l)":/kivy-wheel .
|
|
cp kivy-wheel/Kivy-* dist/
|
|
|
|
# Create a copy with the armv6l suffix
|
|
cp dist/*armv7l.whl dist_armv6l/
|
|
sudo apt-get -y install rename
|
|
rename 's/armv7l/armv6l/' dist_armv6l/*armv7l.whl
|
|
mv dist_armv6l/*armv6l.whl dist/
|
|
rmdir dist_armv6l
|
|
}
|
|
|
|
rename_wheels() {
|
|
wheel_date=$(python3 -c "from datetime import datetime; print(datetime.utcnow().strftime('%Y%m%d'))")
|
|
echo "wheel_date=$wheel_date"
|
|
git_tag=$(git rev-parse --short HEAD)
|
|
echo "git_tag=$git_tag"
|
|
tag_name=$(KIVY_NO_CONSOLELOG=1 python3 \
|
|
-c "import kivy; _, tag, n = kivy.parse_kivy_version(kivy.__version__); print(tag + n) if n is not None else print(tag or 'something')" \
|
|
--config "kivy:log_level:error")
|
|
echo "tag_name=$tag_name"
|
|
wheel_name="$tag_name.$wheel_date.$git_tag-"
|
|
echo "wheel_name=$wheel_name"
|
|
|
|
ls dist/
|
|
for name in dist/*.whl; do
|
|
new_name="${name/$tag_name-/$wheel_name}"
|
|
if [ ! -f "$new_name" ]; then
|
|
cp -n "$name" "$new_name"
|
|
fi
|
|
done
|
|
ls dist/
|
|
}
|
|
|
|
upload_file_to_server() {
|
|
ip="$1"
|
|
server_path="$2"
|
|
file_pat=${3:-*.whl}
|
|
file_path=${4:-dist}
|
|
|
|
if [ ! -d ~/.ssh ]; then
|
|
mkdir ~/.ssh
|
|
fi
|
|
|
|
printf "%s" "$UBUNTU_UPLOAD_KEY" > ~/.ssh/id_rsa
|
|
chmod 600 ~/.ssh/id_rsa
|
|
|
|
echo -e "Host $ip\n\tStrictHostKeyChecking no\n" >>~/.ssh/config
|
|
rsync -avh -e "ssh -p 2458" --include="*/" --include="$file_pat" --exclude="*" "$file_path/" "root@$ip:/web/downloads/ci/$server_path"
|
|
}
|