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

Commit 74dcbc0

Browse files
committed
Updated travis hook
1 parent ec30614 commit 74dcbc0

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

.travis.yml

+9-10
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ language: C
77

88
# Try using multiple Lua Implementations
99
env:
10-
- TOOL="" # Use native compiler (GCC usually)
11-
- COMPILER="clang" # Use clang
12-
# - COMPILER="fortran" # Use fortran, make sure to modify the matrix section
10+
- TOOL="gcc" # Use native compiler (GCC usually)
11+
- TOOL="clang" # Use clang
1312
- TOOL="i686-w64-mingw32" # 32bit MinGW
1413
- TOOL="x86_64-w64-mingw32" # 64bit MinGW
1514
- TOOL="arm-linux-gnueabihf" # ARM hard-float (hf), linux
@@ -20,23 +19,23 @@ matrix:
2019
- env: TOOL="i686-w64-mingw32"
2120
- env: TOOL="x86_64-w64-mingw32"
2221
- env: TOOL="arm-linux-gnueabihf"
23-
22+
2423
# Install dependencies
2524
install:
26-
- git clone git://github.com/LuaDist/_util.git ~/_util
27-
- ~/_util/travis install
25+
- git clone git://github.com/LuaDist/Tools.git ~/_tools
26+
- ~/_tools/travis/travis install
2827

2928
# Bootstap
3029
before_script:
31-
- ~/_util/travis bootstrap
30+
- ~/_tools/travis/travis bootstrap
3231

3332
# Build the module
3433
script:
35-
- ~/_util/travis build
34+
- ~/_tools/travis/travis build
3635

3736
# Execute additional tests or commands
38-
#after_script:
39-
# - ~/_util/travis test
37+
after_script:
38+
- ~/_tools/travis/travis test
4039

4140
# Only watch the master branch
4241
branches:

0 commit comments

Comments
 (0)