1
0
Fork 0
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:
Bert Belder 2019-09-12 19:11:36 +02:00
parent 152de0129e
commit dcf2d1405f
No known key found for this signature in database
GPG key ID: 7A77887B2E2ED461

View file

@ -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: |-