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

Delta Between Two Patch Sets: .travis.yml

Issue 29817566: Noissue - Use clang++ and libc++ on Linux (Closed) Base URL: https://hg.adblockplus.org/libadblockplus/
Left Patch Set: Added note about libc++ Created June 28, 2018, 2:11 p.m.
Right Patch Set: Fix Travis dependencies. Created July 4, 2018, 7:48 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | Makefile » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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 compiler: clang 10 compiler: clang
11 11
12 addons: 12 addons:
13 apt: 13 apt:
14 sources: 14 sources:
15 - 'ubuntu-toolchain-r-test' 15 - 'ubuntu-toolchain-r-test'
16 - llvm-toolchain-trusty-4.0
17 packages: 16 packages:
18 - binutils-gold 17 - binutils-gold
19 - libcurl4-openssl-dev 18 - libcurl4-openssl-dev
20 - g++-7
21 - p7zip-full 19 - p7zip-full
22 - clang-4.0
23 20
24 python: '2.7' 21 python: '2.7'
25 22
26 env: 23 env:
27 global: 24 global:
28 - URL_PREFIX=https://v8.eyeofiles.com/v8-4fc9a2fe7f8a7ef1e7966185b39b3b5417926 69a/ 25 - URL_PREFIX=https://v8.eyeofiles.com/v8-4fc9a2fe7f8a7ef1e7966185b39b3b5417926 69a/
29 - ANDROID_NDK_ROOT=${TRAVIS_BUILD_DIR}/third_party/android-ndk-r16b 26 - ANDROID_NDK_ROOT=${TRAVIS_BUILD_DIR}/third_party/android-ndk-r16b
30 matrix: 27 matrix:
31 - BUILD_ACTION=test 28 - BUILD_ACTION=test
32 - BUILD_ACTION=all TARGET_OS=android Configuration=release ABP_TARGET_ARCH=arm 29 - BUILD_ACTION=all TARGET_OS=android Configuration=release ABP_TARGET_ARCH=arm
33 - BUILD_ACTION=all TARGET_OS=android Configuration=release ABP_TARGET_ARCH=arm 64 30 - BUILD_ACTION=all TARGET_OS=android Configuration=release ABP_TARGET_ARCH=arm 64
34 - BUILD_ACTION=all TARGET_OS=android Configuration=release ABP_TARGET_ARCH=ia3 2 31 - BUILD_ACTION=all TARGET_OS=android Configuration=release ABP_TARGET_ARCH=ia3 2
35 32
36 before_script: 33 before_script:
37 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi 34 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
38 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install p7zip; fi 35 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install p7zip; fi
39 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CXX=g++-7 CC=gcc-7; fi
40 - make get-prebuilt-v8 36 - make get-prebuilt-v8
41 - ./ensure_dependencies.py 37 - ./ensure_dependencies.py
42 - 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 38 - 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
43 - 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 39 - 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
44 - if [[ "${TARGET_OS}" == "android" ]]; then unzip -q third_party/android-ndk. zip -d third_party/ ; fi 40 - if [[ "${TARGET_OS}" == "android" ]]; then unzip -q third_party/android-ndk. zip -d third_party/ ; fi
45 41
46 script: 42 script:
47 - make ${BUILD_ACTION} 43 - make ${BUILD_ACTION}
48 44
49 notifications: 45 notifications:
50 email: false 46 email: false
LEFTRIGHT
« no previous file | Makefile » ('j') | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
This is Rietveld