diff options
author | Sam Clegg <sbc@chromium.org> | 2018-05-15 12:44:50 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-15 12:44:50 -0700 |
commit | 1354d20a1765c9132958c69661d613dc62eb3216 (patch) | |
tree | 1cbbb75cbdbfebe608d369cc2ad3291ea8ab221f | |
parent | 35b563da815d1a0b63e13902246f698fc1fd80dd (diff) | |
download | binaryen-1354d20a1765c9132958c69661d613dc62eb3216.tar.gz binaryen-1354d20a1765c9132958c69661d613dc62eb3216.tar.bz2 binaryen-1354d20a1765c9132958c69661d613dc62eb3216.zip |
travis: Move flake8 to script phase (#1553)
I mistakenly added to before_script.
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 6a01f25f0..cb4c394f5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,9 +30,9 @@ jobs: - export PATH="${HOME}/.jsvu:${PATH}" - jsvu --os=linux64 --engines=spidermonkey before_script: - - flake8 - ./check.py --test-waterfall --only-prepare script: + - flake8 - cmake . -DCMAKE_C_FLAGS="$COMPILER_FLAGS" -DCMAKE_CXX_FLAGS="$COMPILER_FLAGS" - make -j2 - ./check.py --test-waterfall |