Skip to content

A few Travis change #90

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 10, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ matrix:
packages: ['cmake', 'clang-3.7']
compiler: clang
env: COMPILER_VERSION=3.7
#before_script:
# - python update.py
script:
before_script:
- git submodule update --init # Initialize the submodules recorded in the index.
- export CC="${CC}-${COMPILER_VERSION}"
- export CXX="${CXX}-${COMPILER_VERSION}"
- $CC --version
script:
- cmake .
- make -j2
- python check.py
- ./check.py
4 changes: 0 additions & 4 deletions check.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,16 +72,12 @@ def fail_if_not_contained(actual, expected):

if not interpreter:
print 'warning: no interpreter provided (not testing spec interpreter validation)'
time.sleep(0.5)
if not has_node:
print 'warning: no node found (not checking proper js form)'
time.sleep(0.5)
if not has_mozjs:
print 'warning: no mozjs found (not checking asm.js validation)'
time.sleep(0.5)
if not has_emcc:
print 'warning: no emcc found (not checking emscripten/binaryen integration)'
time.sleep(0.5)

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

Expand Down