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
2 changes: 1 addition & 1 deletion build/ci/templates/steps/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ steps:
- bash: |
npm run updateBuildNumber -- --buildNumber $BUILD_BUILDID --updateChangelog
displayName: "Update release Version of Extension"
condition: and(succeeded(), eq(variables['Build.SourceBranchName'], 'release'))
condition: and(succeeded(), startsWith(variables['Build.SourceBranchName'], 'release'))

- bash: |
npm run package
Expand Down
2 changes: 1 addition & 1 deletion build/ci/templates/steps/build_compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ steps:
- bash: |
npm run updateBuildNumber -- --buildNumber $BUILD_BUILDID --updateChangelog
displayName: "Update release Version of Extension"
condition: and(succeeded(), eq(variables['build'], 'true'), eq(variables['Build.SourceBranchName'], 'release'))
condition: and(succeeded(), eq(variables['build'], 'true'), startsWith(variables['Build.SourceBranchName'], 'release'))

- bash: |
npm run package
Expand Down
2 changes: 1 addition & 1 deletion build/ci/vscode-python-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: '$(Year:yyyy).$(Month).0.$(BuildID)-ci'
# on changes in the news and .vscode folders.
trigger:
branches:
include: ["master", "release"]
include: ["master", "release*"]
paths:
exclude: ["/news/1 Enhancements", "/news/2 Fixes", "/news/3 Code Health", "/.vscode"]

Expand Down
2 changes: 1 addition & 1 deletion build/ci/vscode-python-nightly-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ schedules:
branches:
include:
- master
- release
- release*
always: true

# Variables that are available for the entire pipeline.
Expand Down
2 changes: 1 addition & 1 deletion build/ci/vscode-python-nightly-flake-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ schedules:
branches:
include:
- master
- release
- release*
# False here so we don't run these long tests over and over on release branch if the source isn't changing
always: false

Expand Down
2 changes: 1 addition & 1 deletion build/ci/vscode-python-nightly-uitest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ schedules:
branches:
include:
- master
- releases/*
- releases*

# Variables that are available for the entire pipeline.
variables:
Expand Down
2 changes: 1 addition & 1 deletion build/ci/vscode-python-pr-validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: '$(Year:yyyy).$(Month).0.$(BuildID)-pr'
pr:
autoCancel: true
branches:
include: ["master", "release"]
include: ["master", "release*"]
paths:
exclude: ["/news/1 Enhancements", "/news/2 Fixes", "/news/3 Code Health", "/.vscode"]

Expand Down