Bump gradle to 2.8

This commit is contained in:
Daniel Martí 2015-11-30 10:27:21 +01:00
parent e50a12731d
commit b6654f5077
2 changed files with 3 additions and 3 deletions

View File

@ -19,9 +19,9 @@ before_script:
- echo " == Installing Android emulator images" - echo " == Installing Android emulator images"
- echo y | android -s update sdk --no-ui -a -t android-10 - echo y | android -s update sdk --no-ui -a -t android-10
- echo " == Installing Gradle" - echo " == Installing Gradle"
- wget -q -O gradle.zip https://services.gradle.org/distributions/gradle-2.7-bin.zip - wget -q -O gradle.zip https://services.gradle.org/distributions/gradle-2.8-bin.zip
- unzip -q gradle.zip - unzip -q gradle.zip
- export PATH="$PWD/gradle-2.7/bin:$PATH" - export PATH="$PWD/gradle-2.8/bin:$PATH"
test: test:
script: script:

View File

@ -9,5 +9,5 @@ buildscript {
} }
task wrapper(type: Wrapper) { task wrapper(type: Wrapper) {
gradleVersion = '2.7' gradleVersion = '2.8'
} }