From 2ece847a82bd06eb8810950b3064070135d2d94d Mon Sep 17 00:00:00 2001 From: Srijan Reddy Date: Fri, 4 Jan 2019 19:45:43 +0530 Subject: [PATCH] Azure windows pipeline (#85) Fixes #34 --- azure-pipelines.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 267f5828a7..eb48fd5795 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -19,11 +19,10 @@ jobs: - script: echo '##vso[task.prependpath]$(HOME)/.deno/bin/' - script: deno test.ts --allow-run --allow-net --allow-write -# TODO Windows is broken on a bug: https://github.com/denoland/deno/issues/1384 -#- job: 'Windows' -# pool: -# vmImage: 'vs2017-win2016' -# steps: -# - powershell: iex (iwr https://deno.land/x/install/install.ps1) -# - 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' +- job: 'Windows' + pool: + vmImage: 'vs2017-win2016' + steps: + - powershell: iex (iwr https://deno.land/x/install/install.ps1) + - 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'