summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSrijan Reddy <srijanreddy98@gmail.com>2019-01-05 20:28:18 +0530
committerRyan Dahl <ry@tinyclouds.org>2019-01-05 09:58:18 -0500
commit68584f983e4b1cf81d84cdb57bb5459127293cd2 (patch)
tree609bdf94969238d1503442d97abaf2f250a3a288
parent7c62da8975be64d499a3df47af75eebdee996a35 (diff)
Windows CI should use a fixed version of deno (denoland/deno_std#89)
Original: https://github.com/denoland/deno_std/commit/4e12c2b4d2b8e16deb345c993611b56fc8497fd8
-rw-r--r--azure-pipelines.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index eb48fd579..ed28b9c2a 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -23,6 +23,6 @@ jobs:
pool:
vmImage: 'vs2017-win2016'
steps:
- - powershell: iex (iwr https://deno.land/x/install/install.ps1)
+ - powershell: iwr https://deno.land/x/install/install.ps1 -Outfile 'install.ps1'; ./install.ps1 $(DENO_VERSION)
- script: echo '##vso[task.prependpath]C:\Users\VssAdministrator\.deno\bin\'
- script: 'C:\Users\VssAdministrator\.deno\bin\deno.exe test.ts --allow-run --allow-net --allow-write'