Skip to content

Commit 9640077

Browse files
committed
Set up travis
1 parent 16da03a commit 9640077

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

Diff for: .travis.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Sample .travis.yml for R projects from https://github.com/craigcitro/r-travis
2+
3+
language: c
4+
5+
before_install:
6+
- curl -OL http://raw.github.com/craigcitro/r-travis/master/scripts/travis-tool.sh
7+
- chmod 755 ./travis-tool.sh
8+
- ./travis-tool.sh bootstrap
9+
10+
install:
11+
- ./travis-tool.sh install_deps
12+
13+
script: ./travis-tool.sh run_tests
14+
15+
on_failure:
16+
- ./travis-tool.sh dump_logs
17+
18+
notifications:
19+
email:
20+
on_success: change
21+
on_failure: change

Diff for: README.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# tourr
2+
3+
[![Build Status](https://travis-ci.org/ggobi/tourr.png?branch=master)](https://travis-ci.org/ggobi/tourr)
4+
5+
Implements geodesic interpolation and basis generation functions that allow you to create new tour methods from R.

0 commit comments

Comments
 (0)