Skip to content

Commit 4c7a5cf

Browse files
Switch to Azure DevOps for legacy/1.x (#1873)
* legacy azure devops * no extensionname in legacy
1 parent 918c176 commit 4c7a5cf

11 files changed

+448
-1920
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ vscps-preview.zip
1313
npm-debug.log
1414
.vscode-test/
1515
*.DS_Store
16+
test-results.xml

.travis.yml

-30
This file was deleted.

.vsts-ci/azure-pipelines-ci.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
trigger:
2+
- master
3+
- legacy/1.x
4+
variables:
5+
# Don't download unneeded packages
6+
- name: DOTNET_SKIP_FIRST_TIME_EXPERIENCE
7+
value: 'true'
8+
# Don't send telemetry
9+
- name: DOTNET_CLI_TELEMETRY_OPTOUT
10+
value: 'true'
11+
jobs:
12+
- job: Windows
13+
pool:
14+
vmImage: 'VS2017-Win2016'
15+
steps:
16+
- template: templates/ci-general.yml
17+
18+
- job: macOS
19+
pool:
20+
vmImage: 'macOS-10.13'
21+
steps:
22+
- template: templates/ci-general.yml
23+
24+
- job: Linux
25+
pool:
26+
vmImage: 'Ubuntu-16.04'
27+
steps:
28+
- template: templates/ci-general.yml

.vsts-ci/templates/ci-general.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
steps:
2+
# Setup
3+
- pwsh: |
4+
git clone https://github.com/PowerShell/PowerShellEditorServices.git ../PowerShellEditorServices
5+
Install-Module InvokeBuild -Scope CurrentUser -Force
6+
Install-Module PlatyPS -Scope CurrentUser -Force
7+
# Build
8+
- pwsh: Invoke-Build
9+
- task: PublishTestResults@2
10+
inputs:
11+
testRunner: JUnit
12+
testResultsFiles: '**/test-results.xml'
13+
condition: succeededOrFailed()
14+
- task: PublishBuildArtifacts@1
15+
inputs:
16+
ArtifactName: vscode-powershell
17+
PathtoPublish: '$(Build.ArtifactStagingDirectory)'

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# PowerShell Language Support for Visual Studio Code
22

33
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/df06b9909e7442cebc1132bda0b8c0e3)](https://app.codacy.com/app/TylerLeonhardt/vscode-powershell?utm_source=github.com&utm_medium=referral&utm_content=PowerShell/vscode-powershell&utm_campaign=Badge_Grade_Dashboard)
4-
[![Version](https://vsmarketplacebadge.apphb.com/version/ms-vscode.PowerShell.svg)](https://marketplace.visualstudio.com/items?itemName=ms-vscode.PowerShell) [![Installs](https://vsmarketplacebadge.apphb.com/installs-short/ms-vscode.PowerShell.svg)](https://marketplace.visualstudio.com/items?itemName=ms-vscode.PowerShell) [![windows build](https://img.shields.io/appveyor/ci/PowerShell/vscode-powershell/master.svg?label=windows+build)](https://ci.appveyor.com/project/PowerShell/vscode-powershell) [![linux/macos build](https://img.shields.io/travis/PowerShell/vscode-powershell/master.svg?label=linux/macos+build)](https://travis-ci.org/PowerShell/vscode-powershell) [![Join the chat at https://gitter.im/PowerShell/vscode-powershell](https://badges.gitter.im/PowerShell/vscode-powershell.svg)](https://gitter.im/PowerShell/vscode-powershell?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4+
[![Build Status](https://powershell.visualstudio.com/vscode-powershell/_apis/build/status/PowerShell.vscode-powershell?branchName=master)](https://powershell.visualstudio.com/vscode-powershell/_build/latest?definitionId=51&branchName=master)
5+
[![Version](https://vsmarketplacebadge.apphb.com/version/ms-vscode.PowerShell.svg)](https://marketplace.visualstudio.com/items?itemName=ms-vscode.PowerShell)
6+
[![Installs](https://vsmarketplacebadge.apphb.com/installs-short/ms-vscode.PowerShell.svg)](https://marketplace.visualstudio.com/items?itemName=ms-vscode.PowerShell)
7+
[![Join the chat at https://gitter.im/PowerShell/vscode-powershell](https://badges.gitter.im/PowerShell/vscode-powershell.svg)](https://gitter.im/PowerShell/vscode-powershell?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
58

69
This extension provides rich PowerShell language support for [Visual Studio Code](https://github.com/Microsoft/vscode).
710
Now you can write and debug PowerShell scripts using the excellent IDE-like interface

appveyor.yml

-28
This file was deleted.

build/travis.ps1

-7
This file was deleted.

0 commit comments

Comments
 (0)