Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 4 additions & 18 deletions .azure-pipelines/vscode-java-test-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,28 +51,14 @@ extends:
jdkArchitectureOption: x64
jdkSourceOption: PreInstalled
- template: /.azure-pipelines/npm-cfs.yml@self
- task: Npm@1
- script: npm install
displayName: npm install
inputs:
verbose: false
- task: Npm@1
- script: npm run lint
displayName: npm run lint
inputs:
command: custom
verbose: false
customCommand: run lint
- task: Npm@1
- script: npm run build-plugin
displayName: npm run build-plugin
inputs:
command: custom
verbose: false
customCommand: run build-plugin
- task: Npm@1
- script: npm run vscode:prepublish
displayName: npm run vscode:prepublish
inputs:
command: custom
verbose: false
customCommand: run vscode:prepublish
- task: Bash@3
displayName: vsce package
inputs:
Expand Down
16 changes: 3 additions & 13 deletions .azure-pipelines/vscode-java-test-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,22 +67,12 @@ extends:
- script: java --version
displayName: 'Check Java installation'
- template: /.azure-pipelines/npm-cfs.yml@self
- task: Npm@1
- script: npm install
displayName: npm install
inputs:
verbose: false
- task: Npm@1
- script: npm run lint
displayName: npm run lint
inputs:
command: custom
verbose: false
customCommand: run lint
- task: Npm@1
- script: npm run build-plugin
displayName: npm run build-plugin
inputs:
command: custom
verbose: false
customCommand: run build-plugin
- task: PowerShell@2
displayName: Sign Jars
env:
Expand Down
16 changes: 3 additions & 13 deletions .azure-pipelines/vscode-java-test-rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,22 +62,12 @@ extends:
- script: java --version
displayName: 'Check Java installation'
- template: /.azure-pipelines/npm-cfs.yml@self
- task: Npm@1
- script: npm install
displayName: npm install
inputs:
verbose: false
- task: Npm@1
- script: npm run lint
displayName: npm run lint
inputs:
command: custom
verbose: false
customCommand: run lint
- task: Npm@1
- script: npm run build-plugin
displayName: npm run build-plugin
inputs:
command: custom
verbose: false
customCommand: run build-plugin
- task: PowerShell@2
displayName: Sign Jars
env:
Expand Down
Loading