mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-03 02:41:06 +00:00
Merge pull request #990 from alexcrichton/sccache
Try to speed up CI with sccache
This commit is contained in:
commit
6d78c5304a
@ -13,6 +13,10 @@ install:
|
|||||||
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
|
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
|
||||||
- rustc -V
|
- rustc -V
|
||||||
- cargo -V
|
- cargo -V
|
||||||
|
- appveyor-retry appveyor DownloadFile https://github.com/mozilla/sccache/releases/download/0.2.7/sccache-0.2.7-x86_64-pc-windows-msvc.tar.gz
|
||||||
|
- tar xzf sccache-0.2.7-x86_64-pc-windows-msvc.tar.gz
|
||||||
|
- set PATH=%PATH%;%CD%/sccache-0.2.7-x86_64-pc-windows-msvc
|
||||||
|
- set RUSTC_WRAPPER=sccache
|
||||||
|
|
||||||
build: false
|
build: false
|
||||||
|
|
||||||
|
10
.travis.yml
10
.travis.yml
@ -41,6 +41,16 @@ INSTALL_AWS: &INSTALL_AWS
|
|||||||
export PATH=$HOME/.local/bin:$PATH
|
export PATH=$HOME/.local/bin:$PATH
|
||||||
mkdir -p ~/$TRAVIS_BUILD_NUMBER
|
mkdir -p ~/$TRAVIS_BUILD_NUMBER
|
||||||
|
|
||||||
|
before_install:
|
||||||
|
- target=x86_64-unknown-linux-musl
|
||||||
|
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then target=x86_64-apple-darwin; fi
|
||||||
|
- curl -L https://github.com/mozilla/sccache/releases/download/0.2.7/sccache-0.2.7-$target.tar.gz | tar xzf -
|
||||||
|
- export PATH=$PATH:`pwd`/sccache-0.2.7-$target
|
||||||
|
- export RUSTC_WRAPPER=sccache
|
||||||
|
|
||||||
|
after_script:
|
||||||
|
- sccache -s
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
# Tests for wasm-bindgen itself pass
|
# Tests for wasm-bindgen itself pass
|
||||||
|
Loading…
x
Reference in New Issue
Block a user