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

Side by Side Diff: .travis.yml

Issue 29783566: Issue 6596 - update to work with v8 6.7.288.11 (Closed) Base URL: https://github.com/adblockplus/libadblockplus@99836840e314b7941fdb51cb2b91f23ca3ee3414
Patch Set: mention the version of V8 Created May 25, 2018, 10:04 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 | « no previous file | .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
1 language: cpp 1 language: cpp
2 2
3 os: 3 os:
4 - linux 4 - linux
5 - osx 5 - osx
6 6
7 dist: trusty 7 dist: trusty
8 sudo: false 8 sudo: false
9 9
10 addons: 10 addons:
11 apt: 11 apt:
12 sources: 12 sources:
13 - 'ubuntu-toolchain-r-test' 13 - 'ubuntu-toolchain-r-test'
14 packages: 14 packages:
15 - g++-multilib 15 - g++-multilib
16 - binutils-gold 16 - binutils-gold
17 - libcurl4-openssl-dev 17 - libcurl4-openssl-dev
18 - g++-7 18 - g++-7
19 - p7zip-full 19 - p7zip-full
20 20
21 python: '2.7' 21 python: '2.7'
22 22
23 env: 23 env:
24 global: 24 global:
25 - URL_PREFIX=https://v8.eyeofiles.com/v8-3cdaf01c4043e19965efc5ef48df5314960b8 98f/ 25 - URL_PREFIX=https://v8.eyeofiles.com/v8-4fc9a2fe7f8a7ef1e7966185b39b3b5417926 69a/
26 - ANDROID_NDK_ROOT=${TRAVIS_BUILD_DIR}/third_party/android-ndk-r16b
26 matrix: 27 matrix:
27 - BUILD_ACTION=test 28 - BUILD_ACTION=test
28 - BUILD_ACTION=android_arm ANDROID_NDK_ROOT=${TRAVIS_BUILD_DIR}/third_party/an droid-ndk-r16b 29 - BUILD_ACTION=all TARGET_OS=android Configuration=release TARGET_ARCH=arm
29 - BUILD_ACTION=android_x86 ANDROID_NDK_ROOT=${TRAVIS_BUILD_DIR}/third_party/an droid-ndk-r16b 30 - BUILD_ACTION=all TARGET_OS=android Configuration=release TARGET_ARCH=arm64
30 - BUILD_ACTION=android_arm64 ANDROID_NDK_ROOT=${TRAVIS_BUILD_DIR}/third_party/ android-ndk-r16b 31 - BUILD_ACTION=all TARGET_OS=android Configuration=release TARGET_ARCH=ia32
31 32
32 before_script: 33 before_script:
33 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi 34 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
34 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install p7zip; fi 35 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install p7zip; fi
35 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CXX=g++-7 CC=gcc-7; fi 36 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CXX=g++-7 CC=gcc-7; fi
36 - bash .travis/prepare-prebuilt-v8.sh 37 - bash .travis/prepare-prebuilt-v8.sh
37 - sed -i.bak '/third_party\/v8/d' dependencies
38 - ./ensure_dependencies.py 38 - ./ensure_dependencies.py
39 - if [[ -n "$ANDROID_NDK_ROOT" && "$TRAVIS_OS_NAME" == "linux" ]]; then wget h ttps://dl.google.com/android/repository/android-ndk-r16b-linux-x86_64.zip -O thi rd_party/android-ndk.zip ; fi 39 - if [[ "${TARGET_OS}" == "android" && "$TRAVIS_OS_NAME" == "linux" ]]; then w get https://dl.google.com/android/repository/android-ndk-r16b-linux-x86_64.zip - O third_party/android-ndk.zip ; fi
40 - if [[ -n "$ANDROID_NDK_ROOT" && "$TRAVIS_OS_NAME" == "osx" ]]; then wget htt ps://dl.google.com/android/repository/android-ndk-r16b-darwin-x86_64.zip -O thir d_party/android-ndk.zip ; fi 40 - if [[ "${TARGET_OS}" == "android" && "$TRAVIS_OS_NAME" == "osx" ]]; then wge t https://dl.google.com/android/repository/android-ndk-r16b-darwin-x86_64.zip -O third_party/android-ndk.zip ; fi
41 - if [[ -n "$ANDROID_NDK_ROOT" ]]; then unzip -q third_party/android-ndk.zip - d third_party/ ; fi 41 - if [[ "${TARGET_OS}" == "android" ]]; then unzip -q third_party/android-ndk. zip -d third_party/ ; fi
42 42
43 script: 43 script:
44 - travis_wait 30 make ${BUILD_ACTION} LIBV8_LIB_DIR=../third_party/prebuilt-v8 / LIBV8_INCLUDE_DIR=third_party/prebuilt-v8/include 44 - make ${BUILD_ACTION} LIBV8_LIB_DIR=../third_party/prebuilt-v8/ LIBV8_INCLUDE _DIR=third_party/prebuilt-v8/include
45 45
46 notifications: 46 notifications:
47 email: false 47 email: false
OLDNEW
« no previous file with comments | « no previous file | .travis/prepare-prebuilt-v8.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld