Skip to content

Commit 75a5621

Browse files
committed
Merge pull request #90 from WebAssembly/more-travis
A few Travis change
2 parents f637ed5 + 60c26fc commit 75a5621

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

.travis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@ matrix:
1414
packages: ['cmake', 'clang-3.7']
1515
compiler: clang
1616
env: COMPILER_VERSION=3.7
17-
#before_script:
18-
# - python update.py
19-
script:
17+
before_script:
18+
- git submodule update --init # Initialize the submodules recorded in the index.
2019
- export CC="${CC}-${COMPILER_VERSION}"
2120
- export CXX="${CXX}-${COMPILER_VERSION}"
21+
- $CC --version
22+
script:
2223
- cmake .
2324
- make -j2
24-
- python check.py
25+
- ./check.py

check.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,16 +72,12 @@ def fail_if_not_contained(actual, expected):
7272

7373
if not interpreter:
7474
print 'warning: no interpreter provided (not testing spec interpreter validation)'
75-
time.sleep(0.5)
7675
if not has_node:
7776
print 'warning: no node found (not checking proper js form)'
78-
time.sleep(0.5)
7977
if not has_mozjs:
8078
print 'warning: no mozjs found (not checking asm.js validation)'
81-
time.sleep(0.5)
8279
if not has_emcc:
8380
print 'warning: no emcc found (not checking emscripten/binaryen integration)'
84-
time.sleep(0.5)
8581

8682
print '[ checking asm2wasm testcases... ]\n'
8783

0 commit comments

Comments
 (0)