mirror of
https://github.com/denoland/deno.git
synced 2025-01-21 21:50:00 -05:00
appveyor: download sccache before attempting to start it
This commit is contained in:
parent
152de0129e
commit
dcf2d1405f
1 changed files with 5 additions and 3 deletions
|
@ -152,13 +152,15 @@ install:
|
|||
- cargo --version
|
||||
|
||||
before_build:
|
||||
# setup.py downloads sccache if necessary.
|
||||
- python tools\setup.py
|
||||
|
||||
# Start sccache, then throw away the S3 access key.
|
||||
- ps: |-
|
||||
sccache --start-server
|
||||
prebuilt\win\sccache --start-server
|
||||
$env:AWS_SECRET_ACCESS_KEY = $null
|
||||
|
||||
build_script:
|
||||
- python tools\setup.py
|
||||
- cargo clippy --all-targets --release --locked -- -D clippy::all
|
||||
- cargo build -vv --release --all-targets --locked
|
||||
|
||||
|
@ -169,7 +171,7 @@ test_script:
|
|||
|
||||
after_test:
|
||||
# Stop sccache and show stats.
|
||||
- ps: sccache --stop-server
|
||||
- prebuilt\win\sccache --stop-server
|
||||
|
||||
# If this build is going to be deployed, build a zip file.
|
||||
- ps: |-
|
||||
|
|
Loading…
Add table
Reference in a new issue