Skip to content
Open
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
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.
4 changes: 4 additions & 0 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 Down Expand Up @@ -56,6 +57,7 @@ jobs:
vmImage: "ubuntu-latest"

steps:
- checkout: externalRepo
- task: NodeTool@0
inputs:
versionSpec: "22.17.0"
Expand Down Expand Up @@ -108,6 +110,7 @@ jobs:
vmImage: "ubuntu-latest"

steps:
- checkout: externalRepo
- task: NodeTool@0
inputs:
versionSpec: "22.17.0"
Expand Down Expand Up @@ -160,6 +163,7 @@ jobs:
vmImage: "ubuntu-latest"

steps:
- checkout: externalRepo
- task: NodeTool@0
inputs:
versionSpec: "22.17.0"
Expand Down
Loading