From a553b4b06b559e9ba7a05eb42ff65eecfc649c27 Mon Sep 17 00:00:00 2001 From: freestrings Date: Wed, 26 Jun 2019 17:30:14 +0900 Subject: [PATCH] =?UTF-8?q?wasm=20build=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .travis.yml | 38 +++++++++++++++++++++++++++++++++++++- 1 file changed, 37 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 38dbe91..efdaf02 100644 --- a/.travis.yml +++ b/.travis.yml @@ -79,4 +79,40 @@ matrix: - npm -v - npm install script: - - npm test \ No newline at end of file + - npm test + - language: node_js + os: linux + node_js: + - '11' + - '10' + - '9' + - '8' + before_install: + - curl https://sh.rustup.rs -sSf > /tmp/rustup.sh + - sh /tmp/rustup.sh -y + - export PATH="$HOME/.cargo/bin:$PATH" + - source "$HOME/.cargo/env" + - node -v + - npm -v + before_script: + - curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh -s -- -f + script: + - bash ./build-wasm.sh + - language: node_js + os: osx + node_js: + - '11' + - '10' + - '9' + - '8' + before_install: + - curl https://sh.rustup.rs -sSf > /tmp/rustup.sh + - sh /tmp/rustup.sh -y + - export PATH="$HOME/.cargo/bin:$PATH" + - source "$HOME/.cargo/env" + - node -v + - npm -v + before_script: + - curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh -s -- -f + script: + - bash ./build-wasm.sh \ No newline at end of file