Skip to content

Commit 6f8d187

Browse files
Moved travis to docker infrastructure
1 parent be16fd7 commit 6f8d187

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

.travis.yml

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,26 @@
11
language: android
22
jdk: oraclejdk7
3+
sudo: false
34

45
env:
56
global:
67
- NDK_VERSION=r10e
78

9+
addons:
10+
apt:
11+
packages:
12+
- libgd2-xpm
13+
- ia32-libs
14+
- ia32-libs-multiarch
15+
- yasm
16+
- pkg-config
17+
- make
18+
- autoconf
19+
- libtool
20+
- make
21+
- autoconf-archive
22+
- automake
23+
824
cache:
925
directories:
1026
- $HOME/.gradle/caches
@@ -29,9 +45,6 @@ android:
2945
- 'google-gdk-license-.+'
3046

3147
before_install:
32-
# required libs for android build tools
33-
- sudo apt-get update
34-
- sudo apt-get install -qq --force-yes libgd2-xpm ia32-libs ia32-libs-multiarch yasm pkg-config make autoconf libtool make autoconf-archive automake
3548
# Android NDK
3649
- if [ `uname -m` = x86_64 ]; then wget http://dl.google.com/android/ndk/android-ndk-$NDK_VERSION-linux-x86_64.bin -O ndk.bin; else wget http://dl.google.com/android/ndk/android-ndk-$NDK_VERSION-linux-x86.bin -O ndk.bin; fi
3750
- chmod a+x ndk.bin

0 commit comments

Comments
 (0)