Skip to content

Commit

Permalink
[CI] Use mainline branch
Browse files Browse the repository at this point in the history
  • Loading branch information
hcho3 committed Aug 3, 2020
1 parent aa20489 commit c102e87
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Treelite

[![Build Status](https://dev.azure.com/hcho3/treelite/_apis/build/status/dmlc.treelite?branchName=master)](https://dev.azure.com/hcho3/treelite/_build)
[![Build Status](https://img.shields.io/travis/dmlc/treelite.svg?label=build&logo=travis&branch=master)](https://travis-ci.org/dmlc/treelite)
[![Build Status](https://dev.azure.com/hcho3/treelite/_apis/build/status/dmlc.treelite?branchName=mainline)](https://dev.azure.com/hcho3/treelite/_build)
[![Build Status](https://img.shields.io/travis/dmlc/treelite.svg?label=build&logo=travis&branch=mainline)](https://travis-ci.org/dmlc/treelite)
[![Documentation Status](https://readthedocs.org/projects/treelite/badge/?version=latest)](http://treelite.readthedocs.io/en/latest/?badge=latest)
[![codecov](https://codecov.io/gh/dmlc/treelite/branch/master/graph/badge.svg)](https://codecov.io/gh/dmlc/treelite)
[![codecov](https://codecov.io/gh/dmlc/treelite/branch/mainline/graph/badge.svg)](https://codecov.io/gh/dmlc/treelite)
[![GitHub license](http://dmlc.github.io/img/apache2.svg)](./LICENSE)
[![PyPI version](https://badge.fury.io/py/treelite.svg)](https://pypi.python.org/pypi/treelite/)
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/treelite.svg)](https://anaconda.org/conda-forge/treelite)
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/protobuf.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ What is Protocol Buffers?
**Protocol Buffers** (`google/protobuf <https://github.com/google/protobuf>`_)
is a widely used mechanism to serialize structured data. You may specify your
ensemble model according to the specification `src/tree.proto
<https://github.com/dmlc/treelite/blob/master/src/tree.proto>`_. Depending on
<https://github.com/dmlc/treelite/blob/mainline/src/tree.proto>`_. Depending on
the package you used to train the model, it may take some effort to express
the model in terms of the given spec. See `this helpful guide
<https://developers.google.com/protocol-buffers/docs/tutorials>`_ on reading
Expand Down
4 changes: 2 additions & 2 deletions tests/travis/run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ then

# Deploy binary wheel to S3
python -m pip install awscli
if [ "${TRAVIS_BRANCH}" == "master" ]
if [ "${TRAVIS_BRANCH}" == "mainline" ]
then
S3_DEST="s3://treelite-wheels/"
elif [ -z "${TRAVIS_TAG}" ]
Expand Down Expand Up @@ -146,7 +146,7 @@ if [ ${TASK} == "python_sdist_test" ]; then
# Deploy source wheel to S3
if [ ${USE_SYSTEM_PROTOBUF} == "no" ]; then
python -m pip install awscli
if [ "${TRAVIS_BRANCH}" == "master" ]
if [ "${TRAVIS_BRANCH}" == "mainline" ]
then
S3_DEST="s3://treelite-wheels/"
elif [ -z "${TRAVIS_TAG}" ]
Expand Down

0 comments on commit c102e87

Please sign in to comment.