Skip to content
This repository has been archived by the owner on Nov 20, 2020. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Updated travis hook
  • Loading branch information
drahosp committed Feb 18, 2013
1 parent 99e31f2 commit 9eca7ba
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions .travis.yml
Expand Up @@ -7,9 +7,8 @@ language: C


# Try using multiple Lua Implementations # Try using multiple Lua Implementations
env: env:
- TOOL="" # Use native compiler (GCC usually) - TOOL="gcc" # Use native compiler (GCC usually)
- COMPILER="clang" # Use clang - TOOL="clang" # Use clang
# - COMPILER="fortran" # Use fortran, make sure to modify the matrix section
- TOOL="i686-w64-mingw32" # 32bit MinGW - TOOL="i686-w64-mingw32" # 32bit MinGW
- TOOL="x86_64-w64-mingw32" # 64bit MinGW - TOOL="x86_64-w64-mingw32" # 64bit MinGW
- TOOL="arm-linux-gnueabihf" # ARM hard-float (hf), linux - TOOL="arm-linux-gnueabihf" # ARM hard-float (hf), linux
Expand All @@ -20,23 +19,23 @@ matrix:
- env: TOOL="i686-w64-mingw32" - env: TOOL="i686-w64-mingw32"
- env: TOOL="x86_64-w64-mingw32" - env: TOOL="x86_64-w64-mingw32"
- env: TOOL="arm-linux-gnueabihf" - env: TOOL="arm-linux-gnueabihf"

# Install dependencies # Install dependencies
install: install:
- git clone git://github.com/LuaDist/_util.git ~/_util - git clone git://github.com/LuaDist/Tools.git ~/_tools
- ~/_util/travis install - ~/_tools/travis/travis install


# Bootstap # Bootstap
before_script: before_script:
- ~/_util/travis bootstrap - ~/_tools/travis/travis bootstrap


# Build the module # Build the module
script: script:
- ~/_util/travis build - ~/_tools/travis/travis build


# Execute additional tests or commands # Execute additional tests or commands
#after_script: after_script:
# - ~/_util/travis test - ~/_tools/travis/travis test


# Only watch the master branch # Only watch the master branch
branches: branches:
Expand Down

0 comments on commit 9eca7ba

Please sign in to comment.