Skip to content

Commit

Permalink
make sure only master builds
Browse files Browse the repository at this point in the history
  • Loading branch information
arjo129 committed May 2, 2020
1 parent c19902f commit 401635b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ script:
- cargo test

after_success: |
cargo doc \
if [ "$TRAVIS_PULL_REQUEST" = "false" -a "$TRAVIS_BRANCH" = "master" ]; then cargo doc \
&& echo '<meta http-equiv=refresh content=0;url=rosrust_tf/index.html>' > target/doc/index.html && \
sudo pip install ghp-import && \
ghp-import -n target/doc && \
git push -qf https://${TOKEN}@github.com/arjo129/rustros_tf.git gh-pages
git push -qf https://${TOKEN}@github.com/arjo129/rustros_tf.git gh-pages; fi
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# rustros_tf
[![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)
[![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)

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.

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

I am still working on the following:
* Integration with point clouds.
* Integration with point clouds.
* Integration with image geometry.
* Removal of `ndarray` as a dependency.
* Adding `nalgebra` related conversion methods.
Expand Down

0 comments on commit 401635b

Please sign in to comment.