1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-14 21:10:09 +02:00
fdroidserver/.gitlab-ci.yml

27 lines
993 B
YAML
Raw Normal View History

2015-08-28 00:59:46 +02:00
before_script:
- apt-get -q update -y
- echo " == Installing required packages"
- apt-get -q install -y wget tar lib32stdc++6 lib32z1
python pyflakes pep8 dash bash ruby
2015-08-29 01:02:19 +02:00
python-imaging python-libcloud python-magic python-paramiko
python-pyasn1 python-pyasn1-modules python-requests
rsync
- echo " == Installing OpenJDK 7"
- apt-get -q install -y openjdk-7-jdk
2015-08-29 01:11:54 +02:00
- 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
- echo y | android -s update sdk --no-ui -a -t tools
- echo y | android -s update sdk --no-ui -a -t build-tools-23.0.0
2015-08-28 00:59:46 +02:00
2015-08-29 01:02:19 +02:00
test:
2015-08-28 00:59:46 +02:00
script:
- ./hooks/pre-commit
2015-08-29 01:02:19 +02:00
- cd tests
- ./run-tests