diff options
-rw-r--r-- | .appveyor.yml | 4 | ||||
-rw-r--r-- | .travis.yml | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 04fbea299..dd503e12a 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -18,7 +18,6 @@ environment: CARGO_HOME: $(RUST_DIR)\cargo RUSTUP_HOME: $(RUST_DIR)\rustup RUST_BACKTRACE: full - RUSTC_WRAPPER: sccache PYTHONPATH: third_party\python_packages SCCACHE_BUCKET: deno-sccache AWS_ACCESS_KEY_ID: AKIAIVRN52PLDBP55LBQ @@ -90,6 +89,7 @@ for: cache: # Rust stuff. - $(RUST_DIR) + - $(APPVEYOR_BUILD_FOLDER)\target\release\ - $(APPVEYOR_BUILD_FOLDER)\prebuilt\win\ init: @@ -192,7 +192,7 @@ build_script: test_script: - python tools\lint.py - python tools\test_format.py - - ps: Exec { & python tools\test.py --build-dir $env:DENO_BUILD_PATH } + - python tools\test.py after_test: # Stop sccache and show stats. diff --git a/.travis.yml b/.travis.yml index bacf1eb23..60e9bc363 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,6 @@ env: - RUST_BACKTRACE=full - PATH=$TRAVIS_BUILD_DIR/third_party/llvm-build/Release+Asserts/bin:$PATH - PYTHONPATH=third_party/python_packages - - RUSTC_WRAPPER=sccache - SCCACHE_BUCKET=deno-sccache - AWS_ACCESS_KEY_ID=AKIAIVRN52PLDBP55LBQ # AWS_SECRET_ACCESS_KEY=... |