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: add arm64 Created Aug. 9, 2017, 8:02 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « .appveyor/prepare-prebuilt-v8.cmd ('k') | .travis/prepare-prebuilt-v8.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/
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 - BUILD_ACTION=android_arm64 ANDROID_NDK_ROOT=${TRAVIS_BUILD_DIR}/third_party/ android-ndk-r12b
30
31 before_script:
32 - bash .travis/prepare-prebuilt-v8.sh
33 - sed -i '/third_party\/v8/d' dependencies
34 - ./ensure_dependencies.py
35 - 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
36 - if [[ -n "$ANDROID_NDK_ROOT" ]]; then unzip -q third_party/android-ndk.zip - d third_party/ ; fi
37
38 script:
39 - 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
40
41 notifications:
42 email: false
OLDNEW
« no previous file with comments | « .appveyor/prepare-prebuilt-v8.cmd ('k') | .travis/prepare-prebuilt-v8.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld