Commit 27965ac9 authored by Michael Droettboom's avatar Michael Droettboom

Fix issues with toolchain

parent ca29f8cd
......@@ -13,11 +13,11 @@ python:
- '3.6'
before_install:
- wget https://github.com/mozilla/geckodriver/releases/download/v0.20.0/geckodriver-v0.20.0-linux64.tar.gz
- wget --quiet https://github.com/mozilla/geckodriver/releases/download/v0.20.0/geckodriver-v0.20.0-linux64.tar.gz
- mkdir geckodriver
- tar -xf geckodriver-v0.20.0-linux64.tar.gz -C geckodriver
- export PATH=$PATH:$PWD/geckodriver
- if [ ! -f emsdk/emsdk/emsdk ]; then cd $TRAVIS_BUILD_DIR/emsdk; wget https://github.com/iodide-project/pyodide-demo/raw/toolchain/pyodide_toolchain.tgz; tar -xf pyodide_toolchain.tgz; cd $TRAVIS_BUILD_DIR; fi
- if [ ! -f emsdk/emsdk/emsdk ]; then cd $TRAVIS_BUILD_DIR/emsdk; wget --quiet https://github.com/iodide-project/pyodide-demo/raw/toolchain/pyodide_toolchain.tgz; tar -xf pyodide_toolchain.tgz; cd $TRAVIS_BUILD_DIR; fi
install:
- pip install pytest-xdist selenium
......
#!/bin/sh
set -e
find . -name "*.o" -type f -delete
find . -name "*.a" -type f -delete
find -type d -name .git -prune -exec rm -rf {} \;
......@@ -7,3 +8,7 @@ rm -rf emsdk/emscripten/incoming/tests
rm -rf emsdk/clang/fastcomp/src
rm -rf emsdk/zips
rm -rf emsdk/binaryen/master/test
rm -rf emsdk/.emscripten_cache
rm emsdk/.emscripten_cache.lock
rm emsdk/.emscripten_sanity
rm emsdk/.emscripten
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment