diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-12-20 15:29:13 -0500 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-12-21 12:14:03 -0500 |
commit | a31e44d1c8a5843882b3d974827e857070fd17c1 (patch) | |
tree | d10a178541e8834a6407a21b0af69687c90546f5 | |
parent | a86b3c01c8e9363c6a64db854558068a1c1e80e6 (diff) |
Add Azure Pipelines CI (Linux and Mac only)
Windows needs to wait on a bug being fixed.
Original: https://github.com/denoland/deno_std/commit/ffd9f9d41e26de5f1becc7df2283761dd7b7bf74
-rw-r--r-- | azure-pipelines.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 000000000..068f2313f --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,29 @@ +variables: + DENO_VERSION: 'v0.2.3' + +jobs: + +- job: 'Linux' + pool: + vmImage: 'Ubuntu-16.04' + steps: + - script: curl -L https://deno.land/x/install/install.py | python - $(DENO_VERSION) + - script: echo '##vso[task.prependpath]$(HOME)/.deno/bin/' + - script: deno test.ts --allow-run --allow-net + +- job: 'Mac' + pool: + vmImage: 'macOS-10.13' + steps: + - script: curl -L https://deno.land/x/install/install.py | python - $(DENO_VERSION) + - script: echo '##vso[task.prependpath]$(HOME)/.deno/bin/' + - script: deno test.ts --allow-run --allow-net + +# 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' |