mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
d8c99059ec
Original: d1a9605e53
28 lines
933 B
YAML
28 lines
933 B
YAML
variables:
|
|
DENO_VERSION: 'v0.2.8'
|
|
|
|
jobs:
|
|
|
|
- job: 'Linux'
|
|
pool:
|
|
vmImage: 'Ubuntu-16.04'
|
|
steps:
|
|
- script: curl -L https://deno.land/x/install/install.sh | sh -s $(DENO_VERSION)
|
|
- script: echo '##vso[task.prependpath]$(HOME)/.deno/bin/'
|
|
- script: deno test.ts --allow-run --allow-net --allow-write
|
|
|
|
- job: 'Mac'
|
|
pool:
|
|
vmImage: 'macOS-10.13'
|
|
steps:
|
|
- script: curl -L https://deno.land/x/install/install.sh | sh -s $(DENO_VERSION)
|
|
- script: echo '##vso[task.prependpath]$(HOME)/.deno/bin/'
|
|
- script: deno test.ts --allow-run --allow-net --allow-write
|
|
|
|
- job: 'Windows'
|
|
pool:
|
|
vmImage: 'vs2017-win2016'
|
|
steps:
|
|
- powershell: iwr https://deno.land/x/install/install.ps1 -out 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'
|