Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
0eaa53d
automation run update
zedy-wj Dec 15, 2025
daa3037
just run failed cases
zedy-wj Dec 15, 2025
898450c
just run failed cases
zedy-wj Dec 15, 2025
ed5793c
revert some invalid changes
zedy-wj Dec 15, 2025
ff5a385
revert some invalid changes
zedy-wj Dec 15, 2025
fed89d4
update dotnet version
zedy-wj Dec 15, 2025
31872a6
weekly test update
zedy-wj Dec 22, 2025
6ea44ec
update package version for testing purposal
zedy-wj Jan 12, 2026
809b082
test new version
zedy-wj Jan 19, 2026
a3b3545
weekly test
zedy-wj Jan 26, 2026
1a23e0c
automation test
zedy-wj Feb 24, 2026
b5f6bc4
update test package version
zedy-wj Mar 9, 2026
c642e00
weekly test
zedy-wj Mar 16, 2026
3ab68fd
update extension
zedy-wj Mar 16, 2026
107457b
weekly test
zedy-wj Mar 23, 2026
ebffef1
update extension
zedy-wj Mar 23, 2026
7ce2fb0
resolve conflict
zedy-wj Mar 23, 2026
204de71
update package
zedy-wj Mar 23, 2026
02bff70
weekly test
zedy-wj Apr 7, 2026
2c1c1dd
weekly test
zedy-wj Apr 7, 2026
716ded1
fix locate elements
zedy-wj Apr 7, 2026
5e602fd
weekly test
zedy-wj Apr 13, 2026
365a42b
weekly test
zedy-wj Apr 13, 2026
09ad282
weekly test
zedy-wj Apr 13, 2026
ddf5c64
weekly test
zedy-wj Apr 13, 2026
19c9919
weekly test
zedy-wj Apr 13, 2026
727d5ce
fix pipeline error
zedy-wj Apr 14, 2026
e4131ab
weekly test
zedy-wj May 6, 2026
994949f
weekly test
zedy-wj May 6, 2026
69d84ab
fix: add missing peer dependencies for typespec-client-generator-core
zedy-wj May 6, 2026
89720cf
weekly test
zedy-wj May 6, 2026
594e369
weekly test
zedy-wj May 18, 2026
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
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
legacy-peer-deps=true
9 changes: 9 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,22 @@ parameters:
type: boolean
default: true

resources:
repositories:
- repository: externalRepo
type: github
name: v-xuto/TypespecAutomation
endpoint: xuto_pat
ref: wenjie/weekly-test

stages:
- stage: WindowsTests
condition: eq('${{ parameters.runWindows }}', true)
jobs:
- template: windows-tests-stage.yml

- stage: LinuxTests
dependsOn: []
condition: eq('${{ parameters.runLinux }}', true)
jobs:
- template: linux-tests-stage.yml
Binary file modified extension.vsix
Binary file not shown.
12 changes: 8 additions & 4 deletions linux-tests-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ jobs:
vmImage: "ubuntu-latest"

steps:
- checkout: externalRepo
- task: NodeTool@0
inputs:
versionSpec: "22.17.0"
Expand All @@ -22,7 +23,7 @@ jobs:
displayName: "Start xvfb and Set DISPLAY"

- script: |
npm install
npm ci
node -e "require('@vscode/test-electron').download().then(p => console.log('##vso[task.setvariable variable=VSCODE_E2E_DOWNLOAD_PATH]' + p))"
sudo snap install code --classic
displayName: "Install deps and download VSCode"
Expand Down Expand Up @@ -56,6 +57,7 @@ jobs:
vmImage: "ubuntu-latest"

steps:
- checkout: externalRepo
- task: NodeTool@0
inputs:
versionSpec: "22.17.0"
Expand All @@ -74,7 +76,7 @@ jobs:
displayName: "Start xvfb and Set DISPLAY"

- script: |
npm install
npm ci
node -e "require('@vscode/test-electron').download().then(p => console.log('##vso[task.setvariable variable=VSCODE_E2E_DOWNLOAD_PATH]' + p))"
sudo snap install code --classic
displayName: "Install deps and download VSCode"
Expand Down Expand Up @@ -108,6 +110,7 @@ jobs:
vmImage: "ubuntu-latest"

steps:
- checkout: externalRepo
- task: NodeTool@0
inputs:
versionSpec: "22.17.0"
Expand All @@ -126,7 +129,7 @@ jobs:
displayName: "Start xvfb and Set DISPLAY"

- script: |
npm install
npm ci
node -e "require('@vscode/test-electron').download().then(p => console.log('##vso[task.setvariable variable=VSCODE_E2E_DOWNLOAD_PATH]' + p))"
sudo snap install code --classic
displayName: "Install deps and download VSCode"
Expand Down Expand Up @@ -160,6 +163,7 @@ jobs:
vmImage: "ubuntu-latest"

steps:
- checkout: externalRepo
- task: NodeTool@0
inputs:
versionSpec: "22.17.0"
Expand All @@ -178,7 +182,7 @@ jobs:
displayName: "Start xvfb and Set DISPLAY"

- script: |
npm install
npm ci
node -e "require('@vscode/test-electron').download().then(p => console.log('##vso[task.setvariable variable=VSCODE_E2E_DOWNLOAD_PATH]' + p))"
sudo snap install code --classic
displayName: "Install deps and download VSCode"
Expand Down
Loading