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

Side by Side Diff: .travis.yml

Issue 29663688: Issue 6220 - add travis-ci configuration for adblockpluscore (Closed) Base URL: github.com:adblockplus/adblockpluscore
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:
View unified diff | Download patch
« no previous file with comments | « no previous file | .travis/Dockerfile » ('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: required
2
3 services:
4 - docker
5
6 language: cpp
7
8 os:
9 - linux
10 - osx
11
12 dist: trusty
13
14 python: '2.7'
15
16 env:
17 matrix:
18 - BUILDTYPE=release
19 - BUILDTYPE=debug
20
21 install:
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
24 - if [[ "$TRAVIS_OS_NAME" != "linux" ]]; then bash .travis/travis-install.sh; fi
25
26 before_script:
27 - if [[ "$TRAVIS_OS_NAME" != "linux" ]]; then bash .travis/travis-before_scrip t.sh; fi
28
29 script:
30 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then bash .travis/prepare-docker.sh; else bash .travis/travis-script.sh; fi
31
32 notifications:
33 email: false
OLDNEW
« no previous file with comments | « no previous file | .travis/Dockerfile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld