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

Delta Between Two Patch Sets: .travis.yml

Issue 29663688: Issue 6220 - add travis-ci configuration for adblockpluscore (Closed) Base URL: github.com:adblockplus/adblockpluscore
Left Patch Set: add docker Created Jan. 26, 2018, 4:20 p.m.
Right Patch Set: rebase & fix openssl version on osx Created March 1, 2018, 10:52 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 | .travis/Dockerfile » ('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 sudo: required 1 sudo: required
2 2
3 services: 3 services:
4 - docker 4 - docker
5 5
6 language: cpp 6 language: cpp
7 7
8 os: 8 os:
9 - linux 9 - linux
10 - osx 10 - osx
11 11
12 dist: trusty 12 dist: trusty
13 13
14 python: '2.7' 14 python: '2.7'
15 15
16 env: 16 env:
17 matrix: 17 matrix:
18 - BUILDTYPE=release 18 - BUILDTYPE=release
19 - BUILDTYPE=debug 19 - BUILDTYPE=debug
20 20
21 install: 21 install:
22 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install python3; fi 22 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install python3; fi
23 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export PATH=/usr/local/opt/python/ libexec/bin:${PATH}; fi
sergei 2018/03/01 10:56:00 It turned out that meanwhile the configuration sto
23 - if [[ "$TRAVIS_OS_NAME" != "linux" ]]; then bash .travis/travis-install.sh; fi 24 - if [[ "$TRAVIS_OS_NAME" != "linux" ]]; then bash .travis/travis-install.sh; fi
24 25
25 before_script: 26 before_script:
26 - if [[ "$TRAVIS_OS_NAME" != "linux" ]]; then bash .travis/travis-before_scrip t.sh; fi 27 - if [[ "$TRAVIS_OS_NAME" != "linux" ]]; then bash .travis/travis-before_scrip t.sh; fi
27 28
28 script: 29 script:
29 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then bash .travis/prepare-docker.sh; else bash .travis/travis-script.sh; fi 30 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then bash .travis/prepare-docker.sh; else bash .travis/travis-script.sh; fi
30 31
31 notifications: 32 notifications:
32 email: false 33 email: false
LEFTRIGHT
« no previous file | .travis/Dockerfile » ('j') | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
This is Rietveld