From 68584f983e4b1cf81d84cdb57bb5459127293cd2 Mon Sep 17 00:00:00 2001 From: Srijan Reddy Date: Sat, 5 Jan 2019 20:28:18 +0530 Subject: [PATCH] Windows CI should use a fixed version of deno (denoland/deno_std#89) Original: https://github.com/denoland/deno_std/commit/4e12c2b4d2b8e16deb345c993611b56fc8497fd8 --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index eb48fd5795..ed28b9c2a2 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'