Skip to content

Commit 401635b

Browse files
committed
make sure only master builds
1 parent c19902f commit 401635b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ script:
1111
- cargo test
1212

1313
after_success: |
14-
cargo doc \
14+
if [ "$TRAVIS_PULL_REQUEST" = "false" -a "$TRAVIS_BRANCH" = "master" ]; then cargo doc \
1515
&& echo '<meta http-equiv=refresh content=0;url=rosrust_tf/index.html>' > target/doc/index.html && \
1616
sudo pip install ghp-import && \
1717
ghp-import -n target/doc && \
18-
git push -qf https://${TOKEN}@github.com/arjo129/rustros_tf.git gh-pages
18+
git push -qf https://${TOKEN}@github.com/arjo129/rustros_tf.git gh-pages; fi

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# rustros_tf
2-
[![Build Status](https://travis-ci.com/arjo129/rustros_tf.svg?branch=master)](https://travis-ci.com/arjo129/rustros_tf) | [API Documentation](https://arjo129.github.io/rustros_tf/rustros_tf/index.html)
2+
[![Build Status](https://travis-ci.com/arjo129/rustros_tf.svg?branch=master)](https://travis-ci.com/arjo129/rustros_tf) | [API Documentation](https://arjo129.github.io/rustros_tf/rustros_tf/index.html) | [crates.io](https://crates.io/crates/rustros_tf)
33

44
This is a rust port of the [ROS tf library](http://wiki.ros.org/tf). It is intended for being used in robots to help keep track of multiple coordinate frames and is part of a larger suite of rust libraries that provide support for various robotics related functionality.
55

@@ -8,7 +8,7 @@ So far the only the following have been implemented:
88
* `TfListener` with `lookup_transform` and time traversal.
99

1010
I am still working on the following:
11-
* Integration with point clouds.
11+
* Integration with point clouds.
1212
* Integration with image geometry.
1313
* Removal of `ndarray` as a dependency.
1414
* Adding `nalgebra` related conversion methods.

0 commit comments

Comments
 (0)