Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: .travis.yml

Issue 29498563: Issue 5133 - add CI for libadblockplus (Closed) Base URL: https://github.com/adblockplus/libadblockplus.git
Patch Set: Created July 26, 2017, 12:31 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 sudo: false
2 dist: trusty
3
4 python: '2.7'
5
6 language: cpp
7
8 addons:
9 apt:
10 sources:
11 - 'ubuntu-toolchain-r-test'
12 packages:
13 - g++-multilib
14 - binutils-gold
15 - libcurl4-openssl-dev
16 - g++-7
17 - p7zip-full
18
19 os:
20 - linux
21
22 env:
23 global:
24 - URL_PREFIX=https://github.com/xxxz/v8-binaries2/releases/download/v1/
sergei 2017/07/26 12:52:51 This URL will be changed, see similar comment for
25 matrix:
26 - BUILD_ACTION=test
27 - BUILD_ACTION=android_arm ANDROID_NDK_ROOT=${TRAVIS_BUILD_DIR}/third_party/an droid-ndk-r12b
28 - BUILD_ACTION=android_x86 ANDROID_NDK_ROOT=${TRAVIS_BUILD_DIR}/third_party/an droid-ndk-r12b
29
30 before_script:
31 - bash .travis/prepare-prebuilt-v8.sh
32 - ./ensure_dependencies.py
33 - if [[ -n "$ANDROID_NDK_ROOT" ]]; then wget https://dl.google.com/android/rep ository/android-ndk-r12b-linux-x86_64.zip -O third_party/android-ndk.zip ; fi
34 - if [[ -n "$ANDROID_NDK_ROOT" ]]; then unzip -q third_party/android-ndk.zip - d third_party/ ; fi
35
36 script:
37 - CC=gcc-7 CXX=g++-7 make ${BUILD_ACTION} LIBV8_LIB_DIR=../third_party/prebuil t-v8/ LIBV8_INCLUDE_DIR=third_party/prebuilt-v8/include
38
39 notifications:
40 email: false
OLDNEW

Powered by Google App Engine
This is Rietveld