diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-09-19 15:35:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-19 15:35:44 -0400 |
commit | 718a2e82813915e4c688f1e1ceaaa075b9252a78 (patch) | |
tree | 2a62696b9930b211257890669549e6e4eacc3d85 | |
parent | 56ac638d93c96712d6c624e60dcfa4540d334b18 (diff) |
Set RUSTC_WRAPPERf in travis and appveyor (#2978)
-rw-r--r-- | .appveyor.yml | 1 | ||||
-rw-r--r-- | .travis.yml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index dc657b6d6..56648541b 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -7,6 +7,7 @@ clone_folder: C:\deno clone_depth: 1 environment: + RUSTC_WRAPPER: sccache APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 DENO_BUILD_MODE: release DENO_BUILD_PATH: $(APPVEYOR_BUILD_FOLDER)\target\release diff --git a/.travis.yml b/.travis.yml index e1ad2a153..ade134a59 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,7 @@ git: depth: 1 env: global: + - RUSTC_WRAPPER=sccache - RUST_BACKTRACE=full - PATH=$TRAVIS_BUILD_DIR/third_party/llvm-build/Release+Asserts/bin:$PATH - PYTHONPATH=third_party/python_packages |