diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-09-09 16:59:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-09 16:59:46 -0400 |
commit | 08799922187d91785ce336f10b880bc775b0b9c9 (patch) | |
tree | b2584c9b9eb752b5b0ff0c7488005e14e7f7ea1f | |
parent | de418868e8ee9ce16ed69dce760327685fa8cd17 (diff) |
Fix Appveyor's sccache --stop-server problem (#2896)
The problem is seen here: https://ci.appveyor.com/project/deno/deno/builds/27283032
```
sccache --stop-server
Stopping sccache server...
sccache : error: couldn't connect to server
At line:1 char:1
+ sccache --stop-server
+ ~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (error: couldn't connect to server:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
caused by:
No connection could be made because the target machine actively refused it.
(os error 10061)
Command executed with exception: (os error 10061)
```
-rw-r--r-- | .appveyor.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 24ddb972e..04fbea299 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -7,6 +7,7 @@ clone_folder: C:\deno clone_depth: 1 environment: + SCCACHE_IDLE_TIMEOUT: 0 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 DENO_BUILD_MODE: release DENO_BUILD_PATH: $(APPVEYOR_BUILD_FOLDER)\target\release |