diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-09-10 14:45:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-10 14:45:23 -0400 |
commit | 8f171c101a69f63cacd74a08e31e976f958ad0df (patch) | |
tree | 87fc374790ff5b92bbb4d524eedbb176f6a853f2 | |
parent | 49aea7abbc6260cf1974233e96933bd306ce53c0 (diff) |
Appveyor: Add target/release to cache, like travis (#2899)
-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=... |