Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 | |
| OLD | NEW |