mirror of
https://github.com/denoland/deno.git
synced 2025-01-23 07:29:51 -05:00
parent
35cb4d0d13
commit
e729d442fb
6 changed files with 31 additions and 20 deletions
6
.ci/template.common.yml
Normal file
6
.ci/template.common.yml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
parameters:
|
||||||
|
exe_suffix: ""
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- bash: deno${{ parameters.exe_suffix }} run --allow-run --allow-write --allow-read format.ts --check
|
||||||
|
- bash: deno${{ parameters.exe_suffix }} run --allow-run --allow-net --allow-write --allow-read --config=tsconfig.test.json test.ts
|
5
.ci/template.linux.yml
Normal file
5
.ci/template.linux.yml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
steps:
|
||||||
|
- bash: npm install eslint typescript@$(TS_VERSION) @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint-config-prettier
|
||||||
|
- template: ./template.unix.yml
|
||||||
|
- bash: npx eslint **/*.ts --max-warnings=0
|
||||||
|
- template: ./template.common.yml
|
6
.ci/template.mac.yml
Normal file
6
.ci/template.mac.yml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
steps:
|
||||||
|
- bash: npm install -g functional-red-black-tree
|
||||||
|
- bash: npm -g install eslint typescript@$(TS_VERSION) @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint-config-prettier
|
||||||
|
- template: ./template.unix.yml
|
||||||
|
- bash: eslint **/*.ts --max-warnings=0
|
||||||
|
- template: ./template.common.yml
|
3
.ci/template.unix.yml
Normal file
3
.ci/template.unix.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
steps:
|
||||||
|
- bash: curl -L https://deno.land/x/install/install.sh | sh -s $(DENO_VERSION)
|
||||||
|
- bash: echo '##vso[task.prependpath]$(HOME)/.deno/bin/'
|
8
.ci/template.windows.yml
Normal file
8
.ci/template.windows.yml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
steps:
|
||||||
|
- bash: npm install eslint typescript@$(TS_VERSION) @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint-config-prettier
|
||||||
|
- powershell: iwr https://deno.land/x/install/install.ps1 -out install.ps1; .\install.ps1 $(DENO_VERSION)
|
||||||
|
- bash: echo "##vso[task.prependpath]C:\Users\VssAdministrator\.deno\\bin"
|
||||||
|
- bash: npx eslint **/*.ts --max-warnings=0
|
||||||
|
- template: ./template.common.yml
|
||||||
|
parameters:
|
||||||
|
exe_suffix: ".exe"
|
|
@ -2,39 +2,22 @@ variables:
|
||||||
DENO_VERSION: "v0.7.0"
|
DENO_VERSION: "v0.7.0"
|
||||||
TS_VERSION: "3.4.5"
|
TS_VERSION: "3.4.5"
|
||||||
|
|
||||||
# TODO DRY up the jobs
|
|
||||||
# TODO Try to get eslint to run under Deno, like prettier
|
# TODO Try to get eslint to run under Deno, like prettier
|
||||||
jobs:
|
jobs:
|
||||||
- job: "Linux"
|
- job: "Linux"
|
||||||
pool:
|
pool:
|
||||||
vmImage: "Ubuntu-16.04"
|
vmImage: "Ubuntu-16.04"
|
||||||
steps:
|
steps:
|
||||||
- script: npm install eslint typescript@$(TS_VERSION) @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint-config-prettier
|
- template: .ci/template.linux.yml
|
||||||
- script: curl -L https://deno.land/x/install/install.sh | sh -s $(DENO_VERSION)
|
|
||||||
- script: echo '##vso[task.prependpath]$(HOME)/.deno/bin/'
|
|
||||||
- script: npx eslint **/*.ts --max-warnings=0
|
|
||||||
- script: deno run --allow-run --allow-write --allow-read format.ts --check
|
|
||||||
- script: deno run --allow-run --allow-net --allow-write --allow-read --config=tsconfig.test.json test.ts
|
|
||||||
|
|
||||||
- job: "Mac"
|
- job: "Mac"
|
||||||
pool:
|
pool:
|
||||||
vmImage: "macOS-10.13"
|
vmImage: "macOS-10.13"
|
||||||
steps:
|
steps:
|
||||||
- script: npm install -g functional-red-black-tree
|
- template: .ci/template.mac.yml
|
||||||
- script: npm install -g eslint typescript@$(TS_VERSION) @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint-config-prettier
|
|
||||||
- script: curl -L https://deno.land/x/install/install.sh | sh -s $(DENO_VERSION)
|
|
||||||
- script: echo '##vso[task.prependpath]$(HOME)/.deno/bin/'
|
|
||||||
- script: eslint **/*.ts --max-warnings=0
|
|
||||||
- script: deno run --allow-run --allow-write --allow-read format.ts --check
|
|
||||||
- script: deno run --allow-run --allow-net --allow-write --allow-read --config=tsconfig.test.json test.ts
|
|
||||||
|
|
||||||
- job: "Windows"
|
- job: "Windows"
|
||||||
pool:
|
pool:
|
||||||
vmImage: "vs2017-win2016"
|
vmImage: "vs2017-win2016"
|
||||||
steps:
|
steps:
|
||||||
- bash: npm install eslint typescript@$(TS_VERSION) @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint-config-prettier
|
- template: .ci/template.windows.yml
|
||||||
- powershell: iwr https://deno.land/x/install/install.ps1 -out install.ps1; .\install.ps1 $(DENO_VERSION)
|
|
||||||
- bash: echo "##vso[task.prependpath]C:\Users\VssAdministrator\.deno\\bin"
|
|
||||||
- bash: npx eslint **/*.ts --max-warnings=0
|
|
||||||
- bash: deno.exe run --allow-run --allow-write --allow-read format.ts --check
|
|
||||||
- bash: deno.exe run --allow-run --allow-net --allow-write --allow-read --config=tsconfig.test.json test.ts
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue