Skip to content

Commit

Permalink
Update Travis config to build and run the tests
Browse files Browse the repository at this point in the history
Forgot that a lot of the build files need to be generated from a clean
clone, so now it's running bootstrap before configuring and making. Also
add Ruby 2.0 to the run list and get rid of 1.9.2.
  • Loading branch information
jasonroelofs committed Mar 25, 2013
1 parent 80c3988 commit dc188c0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .travis.yml
@@ -1,7 +1,11 @@
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ree
- ruby-head

script: "ruby extconf.rb && make && rake"
before_script:
- sh bootstrap
- ruby extconf.rb
- make
script: rake
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -2,7 +2,7 @@ AC_INIT(rice, 1.1)
AC_CONFIG_SRCDIR(rice)
AM_INIT_AUTOMAKE

AM_CONFIG_HEADER(rice/config.hpp)
AC_CONFIG_HEADERS(rice/config.hpp)

AC_LANG(C++)
AC_PROG_CXX
Expand Down
3 changes: 3 additions & 0 deletions rice/config.hpp.in
Expand Up @@ -30,6 +30,9 @@
/* Define to the one symbol short name of this package. */
#undef PACKAGE_TARNAME

/* Define to the home page for this package. */
#undef PACKAGE_URL

/* Define to the version of this package. */
#undef PACKAGE_VERSION

Expand Down

0 comments on commit dc188c0

Please sign in to comment.