1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 18:50:11 +02:00
fdroidserver/.gitlab-ci.yml
Hans-Christoph Steiner 9855d4089c install build dependencies for Pillow
When Pillow is installed with pip, it needs to compile the C code
against a few libraries, like libjpeg.  This also adds python-git
as a dep.
2015-09-01 23:48:28 +02:00

26 lines
1004 B
YAML

before_script:
- apt-get -q update -y
- echo " == Installing required packages"
- apt-get -q install -y wget tar lib32stdc++6 lib32z1
libjpeg-dev python-dev zlib1g-dev
python pyflakes pylint pep8 dash bash ruby
python-git python-imaging python-libcloud python-logilab-astng python-magic
python-paramiko python-pip python-pyasn1 python-pyasn1-modules
python-requests python-virtualenv python-yaml
rsync
- echo " == Installing OpenJDK 7"
- apt-get -q install -y openjdk-7-jdk
- echo " == Installing the Android SDK"
- wget -q -O android-sdk.tgz https://dl.google.com/android/android-sdk_r24.3.4-linux.tgz
- tar -x -z -f android-sdk.tgz
- mv android-sdk-linux android-sdk
- export ANDROID_HOME=$PWD/android-sdk
- export PATH="$ANDROID_HOME/tools:$PATH"
- echo " == Installing Android SDK components"
- echo y | android -s update sdk --no-ui -a -t platform-tools,tools,build-tools-23.0.0
test:
script:
- cd tests
- ./complete-ci-tests