Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(134)

Side by Side Diff: .travis.yml

Issue 1873133003: Add travis CI config (Closed) Base URL: https://chromium.googlesource.com/breakpad/breakpad.git@master
Patch Set: Fix review comments Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | scripts/travis-build.sh » ('j') | scripts/travis-build.sh » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Travis build integration.
2 # https://docs.travis-ci.com/
3 language: cpp
4 # TODO: add a clang build as well.
5 compiler:
6 - gcc
7 addons:
8 apt:
9 sources:
10 - ubuntu-toolchain-r-test
11 packages:
12 - gcc-4.8
13 - g++-4.8
14 # Travis sets CC/CXX to the system toolchain based on the `compiler`
15 # selection. If clang is added, this should move to be set inside the
16 # matrix.
17 env:
18 - USE_CC=gcc-4.8 USE_CXX=g++-4.8
19 before_install: ./scripts/travis-checkout.sh
20 script: ./scripts/travis-build.sh
21 os:
22 - linux
23 # TODO: add mac support, needs coordination from Travis.
vapier 2016/04/11 17:13:35 why does it need coordination w/Travis ? i've set
Ted Mielczarek 2016/04/11 17:30:16 Oh, I just have outdated information. For the long
Ted Mielczarek 2016/04/12 10:03:05 Done.
24 notifications:
25 email:
26 - google-breakpad-dev@googlegroups.com
OLDNEW
« no previous file with comments | « no previous file | scripts/travis-build.sh » ('j') | scripts/travis-build.sh » ('J')

Powered by Google App Engine
This is Rietveld 408576698