Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 69509c0

Browse files
committedMar 5, 2024·
Disable Azure Pipelines CI for release branch
It is completely superfluous because the release pipeline runs the exact same CI template, and it's still really flaky. Also run the GitHub Actions CI with the Release configuration.
1 parent 0d33d7a commit 69509c0

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed
 

‎.github/workflows/ci-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ jobs:
5252

5353
- name: Build and test
5454
shell: pwsh
55-
run: Invoke-Build ${{ github.event_name == 'merge_group' && 'TestFull' || 'Test' }}
55+
run: Invoke-Build -Configuration Release ${{ github.event_name == 'merge_group' && 'TestFull' || 'Test' }}
5656

5757
- name: Test with daily
5858
if: ${{ github.event_name == 'schedule' }}
5959
shell: pwsh
60-
run: ./pwsh/tools/install-powershell.ps1 -Daily && Invoke-Build TestE2EDaily
60+
run: ./pwsh/tools/install-powershell.ps1 -Daily && Invoke-Build -Configuration Release TestE2EDaily
6161

6262
- name: Upload build artifacts
6363
if: always()

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

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
name: CI-$(Build.SourceBranchName)-$(Date:yyyyMMdd)$(Rev:.rr)
22

3+
# NOTE: This was superceded by the GitHub Actions workflow.
34
pr: none
4-
5-
trigger:
6-
branches:
7-
include:
8-
- release
5+
trigger: none
96

107
variables:
118
# Don't download unneeded packages

0 commit comments

Comments
 (0)
Please sign in to comment.