chiark / gitweb /
`python setup.py release` alias for making official releases
[fdroidserver.git] / .gitlab-ci.yml
index 298bf5048585c68b0f1b6cc46b0a07a6da62da53..a1b3148a073d97cb7dbd6ebc510af074194c029f 100644 (file)
@@ -1,22 +1,31 @@
 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
-      python-imaging python-libcloud python-logilab-astng python-magic
+  - echo " == Installing packages required by this CI script"
+  - apt-get -q install -y wget tar
+  - echo " == Installing packages required by fdroidserver"
+  - apt-get -q install -y python
+      python-git python-imaging python-libcloud python-logilab-astng
       python-paramiko python-pip python-pyasn1 python-pyasn1-modules
-      python-requests python-yaml
+      python-requests python-virtualenv python-yaml
       rsync
+  - echo " == Installing packages required by the test suite"
+  - apt-get -q install -y pyflakes pylint pep8 dash bash ruby
+  - echo " == Installing packages required to build Pillow"
+  - apt-get -q install -y python-dev libjpeg-dev zlib1g-dev
   - echo " == Installing OpenJDK 7"
   - apt-get -q install -y openjdk-7-jdk
+  - echo " == Installing packages required by the 32-bit SDK"
+  - apt-get -q install -y lib32stdc++6 lib32z1
   - echo " == Installing the Android SDK"
-  - wget -q -O android-sdk.tgz https://dl.google.com/android/android-sdk_r24.3.4-linux.tgz
+  - wget -q -O android-sdk.tgz https://dl.google.com/android/android-sdk_r24.4.1-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
+  - echo y | android -s update sdk --no-ui -a -t platform-tools,tools,build-tools-23.0.2
+  - export PATH="$ANDROID_HOME/platform-tools:$PATH"
+  - export PATH="$ANDROID_HOME/build-tools/23.0.2:$PATH"
 
 test:
   script: