Skip to content

Commit 6d6bce8

Browse files
committed
added vsce package from vscode, added and commented out automated publishing bash script, and removed windows from strategy matrix
1 parent 4c33022 commit 6d6bce8

File tree

3 files changed

+1235
-24
lines changed

3 files changed

+1235
-24
lines changed

azure-pipelines.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ trigger:
55
tags:
66
include:
77
- v*
8+
# - refs/tags/v*
89

910
pr:
1011
branches:
@@ -17,8 +18,6 @@ strategy:
1718
imageName: 'ubuntu-latest'
1819
mac:
1920
imageName: 'macos-latest'
20-
windows:
21-
imageName: 'windows-latest'
2221

2322
pool:
2423
vmImage: $(imageName)
@@ -37,12 +36,18 @@ steps:
3736
condition: and(succeeded(), eq(variables['Agent.OS'], 'Linux'))
3837

3938
- bash: |
40-
echo ">>> Compile vscode-test"
39+
echo ">>> Run npm install and Compile vscode-test"
4140
npm install && npm run compile
42-
# echo ">>> Pointing to tests directory"
43-
# cd ./build/src/test/runTest.js
4441
echo ">>> Run sample integration test"
4542
npm install && npm run compile && npm run tests
4643
displayName: Run Tests
4744
env:
48-
DISPLAY: ':99.0'
45+
DISPLAY: ':99.0'
46+
47+
# - bash: |
48+
# echo ">>> Publish"
49+
# npm run deploy
50+
# displayName: Publish
51+
# condition: add(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/'), eq(variables['Agent.OS'], 'Linux'))
52+
# env:
53+
# VSCE_PAT: $(VSCE_PAT)

0 commit comments

Comments
 (0)