Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
026aa97
fix security issue with playwright/test 1.49.1 (#6592)
vhvb1989 Jan 23, 2026
cb20d72
Merge branch 'main' of https://github.com/Azure/azure-dev
vhvb1989 Jan 23, 2026
6335069
Merge branch 'main' of https://github.com/Azure/azure-dev
vhvb1989 Jan 24, 2026
fb08f19
Merge branch 'main' of https://github.com/Azure/azure-dev
vhvb1989 Jan 26, 2026
c71904a
Merge branch 'main' of https://github.com/Azure/azure-dev
vhvb1989 Jan 27, 2026
b87c8af
Merge branch 'main' of https://github.com/Azure/azure-dev
vhvb1989 Jan 29, 2026
11c2b87
Merge branch 'main' of https://github.com/Azure/azure-dev
vhvb1989 Jan 29, 2026
de7f19b
Merge branch 'main' of https://github.com/Azure/azure-dev
vhvb1989 Feb 2, 2026
aac862d
Merge branch 'main' of https://github.com/Azure/azure-dev
vhvb1989 Feb 2, 2026
33bc605
Merge branch 'main' of https://github.com/Azure/azure-dev
vhvb1989 Feb 3, 2026
f377610
Merge branch 'main' of https://github.com/Azure/azure-dev
vhvb1989 Feb 3, 2026
69c3e3c
Merge branch 'main' of https://github.com/Azure/azure-dev
vhvb1989 Feb 4, 2026
ab2767e
Merge branch 'main' of https://github.com/Azure/azure-dev
vhvb1989 Feb 4, 2026
d7f9abb
Merge branch 'main' of https://github.com/Azure/azure-dev
vhvb1989 Feb 5, 2026
76b1d09
Merge branch 'main' of https://github.com/Azure/azure-dev
vhvb1989 Feb 17, 2026
9d3a25e
Merge branch 'main' of https://github.com/Azure/azure-dev
vhvb1989 Feb 20, 2026
7d35903
Merge branch 'main' of https://github.com/Azure/azure-dev
vhvb1989 Feb 22, 2026
f6bb5a0
Merge branch 'main' of https://github.com/Azure/azure-dev
vhvb1989 Feb 23, 2026
a4b10f0
allow live mode on demand
vhvb1989 Feb 25, 2026
47e8c46
Update eng/pipelines/release-cli.yml
vhvb1989 Feb 25, 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
13 changes: 13 additions & 0 deletions eng/pipelines/release-cli.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
parameters:
- name: AzureRecordMode
displayName: Azure Record Mode
type: string
default: playback
values:
- playback
- live

# Continuous deployment trigger
trigger:
branches:
Expand Down Expand Up @@ -33,6 +42,10 @@ extends:
stages:
- template: /eng/pipelines/templates/stages/build-and-test.yml
parameters:
${{ if eq(variables['Build.Reason'], 'Schedule') }}:
AzureRecordMode: live
${{ else }}:
AzureRecordMode: ${{ parameters.AzureRecordMode }}
BuildMatrix:
Windows:
Pool: $(WINDOWSPOOL)
Expand Down
5 changes: 4 additions & 1 deletion eng/pipelines/templates/jobs/build-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ parameters:
- name: UploadArtifact
type: boolean
default: true
- name: AzureRecordMode
type: string
default: playback
- name: ghCopilotClientId
type: string
- name: ghCopilotIntegrationId
Expand Down Expand Up @@ -148,7 +151,7 @@ jobs:
AZD_TEST_TENANT_ID: $(AzureSubscriptionTenantId)
AZD_TEST_AZURE_SUBSCRIPTION_ID: $(SubscriptionId)
AZD_TEST_AZURE_LOCATION: eastus2
AZURE_RECORD_MODE: playback # Always run in 'playback' mode during CI builds
AZURE_RECORD_MODE: ${{ parameters.AzureRecordMode }}
# AZD Live Test: Terraform authentication via `az`
ARM_USE_CLI: true
# Code Coverage: Generate junit report to publish results
Expand Down
4 changes: 4 additions & 0 deletions eng/pipelines/templates/stages/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
parameters:
- name: AzureRecordMode
type: string
default: playback
- name: BuildMatrix
type: object
- name: CrossBuildMatrix
Expand Down Expand Up @@ -79,6 +82,7 @@ stages:
OS: ${{ build.value.OS }}
UploadArtifact: ${{ build.value.UploadArtifact}}
Variables: ${{ build.value.Variables }}
AzureRecordMode: ${{ parameters.AzureRecordMode }}
ghCopilotClientId: ${{ build.value.GhCopilotClientId }}
ghCopilotIntegrationId: ${{ build.value.GhCopilotIntegrationId }}

Expand Down
Loading