Skip to content

Commit bda1bc6

Browse files
committed
Other: Fix travis build
1 parent 952c7d1 commit bda1bc6

File tree

9 files changed

+3068
-916
lines changed

9 files changed

+3068
-916
lines changed

.travis.yml

+3-13
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,12 @@ node_js:
44
- 4
55
- 4.3.2
66
- 6
7-
- 7
7+
- 8
88
branches:
99
only: master
1010
script: npm test && npm run bench
1111

12-
env: CXX=g++-4.8
13-
addons:
14-
apt:
15-
sources: ubuntu-toolchain-r-test
16-
packages: g++-4.8
17-
code_climate:
18-
repo_token: 20d88c0ad0ae53be53f48ef57cfec8ff6d8fc86381f742b50747335f3cebdc69
19-
2012
matrix:
2113
include:
22-
- node_js: 6
23-
script: set -e; if [ -n "$SAUCE_USERNAME" ]; then npm install zuul@^3.11.1 zuul-ngrok@^4.0.0; travis_wait npm run zuul; sleep 3; fi
24-
- node_js: 6
25-
script: npm install codeclimate-test-reporter@^0.4.1; npm run coverage-ci
14+
- node_js: 8
15+
script: set -e; if [ -n "$CODECLIMATE_REPO_TOKEN" ]; then npm run coverage-ci; fi

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<h1><p align="center"><img alt="protobuf.js" src="https://github.com/dcodeIO/protobuf.js/raw/master/pbjs.png" width="120" height="104" /></p></h1>
2-
<p align="center"><a href="https://npmjs.org/package/protobufjs"><img src="https://img.shields.io/npm/v/protobufjs.svg" alt=""></a> <a href="https://travis-ci.org/dcodeIO/protobuf.js"><img src="https://travis-ci.org/dcodeIO/protobuf.js.svg?branch=master" alt=""></a> <a href="https://codeclimate.com/github/dcodeIO/protobuf.js/coverage"><img src="https://codeclimate.com/github/dcodeIO/protobuf.js/badges/coverage.svg" /></a> <a href="https://codeclimate.com/github/dcodeIO/protobuf.js"><img src="https://codeclimate.com/github/dcodeIO/protobuf.js/badges/gpa.svg" /></a> <a href="https://npmjs.org/package/protobufjs"><img src="https://img.shields.io/npm/dm/protobufjs.svg" alt=""></a> <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=dcode%40dcode.io&item_name=Open%20Source%20Software%20Donation&item_number=dcodeIO%2Fprotobuf.js"><img alt="donate ❤" src="https://img.shields.io/badge/donate-❤-ff2244.svg"></a></p>
2+
<p align="center"><a href="https://npmjs.org/package/protobufjs"><img src="https://img.shields.io/npm/v/protobufjs.svg" alt=""></a> <a href="https://travis-ci.org/dcodeIO/protobuf.js"><img src="https://travis-ci.org/dcodeIO/protobuf.js.svg?branch=master" alt=""></a> <a href="https://codeclimate.com/github/dcodeIO/protobuf.js/coverage"><img src="https://codeclimate.com/github/dcodeIO/protobuf.js/badges/coverage.svg" /></a> <a href="https://npmjs.org/package/protobufjs"><img src="https://img.shields.io/npm/dm/protobufjs.svg" alt=""></a> <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=dcode%40dcode.io&item_name=Open%20Source%20Software%20Donation&item_number=dcodeIO%2Fprotobuf.js"><img alt="donate ❤" src="https://img.shields.io/badge/donate-❤-ff2244.svg"></a></p>
33

44
**Protocol Buffers** are a language-neutral, platform-neutral, extensible way of serializing structured data for use in communications protocols, data storage, and more, originally designed at Google ([see](https://developers.google.com/protocol-buffers/)).
55

@@ -822,8 +822,7 @@ Note that as of this writing, the benchmark suite performs significantly slower
822822
Compatibility
823823
-------------
824824

825-
[![Sauce Test Status](https://saucelabs.com/browser-matrix/protobuf.svg)](https://saucelabs.com/u/protobuf)
826-
825+
* Works in all modern and not-so-modern browsers except IE8.
827826
* Because the internals of this package do not rely on `google/protobuf/descriptor.proto`, options are parsed and presented literally.
828827
* If typed arrays are not supported by the environment, plain arrays will be used instead.
829828
* Support for pre-ES5 environments (except IE8) can be achieved by [using a polyfill](https://github.com/dcodeIO/protobuf.js/blob/master/scripts/polyfill.js).

dist/light/protobuf.min.js.gz

-16.4 KB
Binary file not shown.

dist/minimal/protobuf.min.js.gz

-6.54 KB
Binary file not shown.

dist/protobuf.min.js.gz

-19.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)