mirror of
https://github.com/denoland/deno.git
synced 2024-11-27 16:10:57 -05:00
Add Azure Pipelines CI (Linux and Mac only)
Windows needs to wait on a bug being fixed.
Original: ffd9f9d41e
This commit is contained in:
parent
a86b3c01c8
commit
a31e44d1c8
1 changed files with 29 additions and 0 deletions
29
azure-pipelines.yml
Normal file
29
azure-pipelines.yml
Normal file
|
@ -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'
|
Loading…
Reference in a new issue