From 2b5edf2434941d43db4374e9b0c7497b8dc0f742 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 19 Sep 2017 19:58:45 +0200 Subject: [PATCH] travis-ci: make Trusty builds a first class citizen Trusty is used in Travis-CI, Windows Subsystem for Linux, and many other places, so its an important target platform to test on. This provides testing for the backports in the Launchpad PPAs like: * https://launchpad.net/~fdroid/+archive/ubuntu/fdroidserver * https://launchpad.net/~fdroid/+archive/ubuntu/buildserver --- .travis.yml | 33 +++++++++++++++++++++++++-------- 1 file changed, 25 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7a7ce68e..7b39e720 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,22 +3,39 @@ language: java matrix: - allow_failures: - - os: linux # this is really about OSX, Ubuntu is just bonus include: - os: linux language: android - sudo: required - # this doesn't actually work yet https://github.com/travis-ci/travis-ci/issues/5337 - dist: trusty - os: osx osx_image: xcode9 env: ANDROID_SDK_ROOT=/usr/local/share/android-sdk env: ANDROID_HOME=/usr/local/share/android-sdk -licenses: - - 'android-sdk-preview-license-52d11cd2' - - 'android-sdk-license-.+' +addons: + apt: + sources: + - sourceline: 'ppa:fdroid/fdroidserver' + packages: + - bash + - dash + - pylint + - pep8 + - python3-dev + - python3-pip + - python3-ruamel.yaml + - python3-setuptools + - python3.4-venv + - libjpeg-dev + - zlib1g-dev + - fdroidserver + +android: + components: + - android-23 # required for `fdroid build` test + - build-tools-25.0.3 # required for `fdroid build` test + licenses: + - 'android-sdk-preview-.+' + - 'android-sdk-license-.+' # the PPA is needed on Ubuntu 14.04 precise, and with python3, trusty too # the pip thing is a hack that can go away with trusty -- 2.30.2