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

Side by Side Diff: third_party/protobuf/.travis.yml

Issue 1322483002: Revert https://codereview.chromium.org/1291903002 (protobuf roll). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 | « third_party/protobuf/.gitignore ('k') | third_party/protobuf/BUILD » ('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 # Note: travis currently does not support listing more than one language so
3 # this cheats and claims to only be cpp. If they add multiple language
4 # support, this should probably get updated to install steps and/or
5 # rvm/gemfile/jdk/etc. entries rather than manually doing the work.
6 language: cpp
7 os:
8 - linux
9 - osx
10 script:
11 - ./travis.sh $CONFIG
12 env:
13 - CONFIG=cpp
14 - CONFIG=cpp_distcheck
15 - CONFIG=csharp
16 - CONFIG=java_jdk6
17 - CONFIG=java_jdk7
18 - CONFIG=java_oracle7
19 - CONFIG=javanano_jdk6
20 - CONFIG=javanano_jdk7
21 - CONFIG=javanano_oracle7
22 - CONFIG=python
23 - CONFIG=python_cpp
24 - CONFIG=ruby19
25 - CONFIG=ruby20
26 - CONFIG=ruby21
27 - CONFIG=ruby22
28 - CONFIG=jruby
29 matrix:
30 exclude:
31 # It's nontrivial to programmatically install a new JDK from the command
32 # line on OS X, so we rely on testing on Linux for Java code.
33 - os: osx
34 env: CONFIG=java_jdk6
35 - os: osx
36 env: CONFIG=java_jdk7
37 - os: osx
38 env: CONFIG=java_oracle7
39 - os: osx
40 env: CONFIG=javanano_jdk6
41 - os: osx
42 env: CONFIG=javanano_jdk7
43 - os: osx
44 env: CONFIG=javanano_oracle7
45 # Requires installing mono, currently travis.sh is doing that with apt-get
46 # which doesn't work on OS X.
47 - os: osx
48 env: CONFIG=csharp
49 allow_failures:
50 # These currently do not work on OS X but are being worked on by @haberman.
51 - os: osx
52 env: CONFIG=ruby22
53 - os: osx
54 env: CONFIG=jruby
55 notifications:
56 email: false
OLDNEW
« no previous file with comments | « third_party/protobuf/.gitignore ('k') | third_party/protobuf/BUILD » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698