Skip to content

Commit 542c542

Browse files
committed
ci: run full Azure integration suite under OIDC
With provider pins modernized (prior commits), all examples in examples/azure/ are on AzureRM >= 3.x and OIDC-compatible. The Azure integration workflow no longer needs the -run filter that scoped it to two AzureRM 3.x-ready tests, addressing the fragile-enumeration feedback on #1794: #1794 (comment) Also flips concurrency.cancel-in-progress to false so a cancelled run can't orphan Azure resources mid `terraform apply`.
1 parent 1aa880c commit 542c542

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/azure-integration-tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ on:
2424

2525
concurrency:
2626
group: azure-integration-tests-${{ github.ref }}
27-
cancel-in-progress: true
27+
# Don't cancel in-flight runs; tests provision real resources and rely
28+
# on `defer terraform.Destroy` for cleanup.
29+
cancel-in-progress: false
2830

2931
jobs:
3032
azure-integration-tests:
@@ -78,11 +80,9 @@ jobs:
7880
run: |
7981
set -o pipefail
8082
mkdir -p /tmp/logs
81-
# Scope: OIDC-compatible examples only (AzureRM provider >= 3.7).
82-
# Examples on AzureRM 2.x cannot authenticate via OIDC and are
83-
# gated behind a follow-up provider-upgrade effort.
83+
# Run the full Azure integration suite. All examples are pinned to
84+
# AzureRM >= 3.x and authenticate via OIDC.
8485
go test -v -p 1 -tags azure -count=1 -timeout 45m \
85-
-run '^(TestTerraformAzureContainerAppExample|TestTerraformAzureKeyVaultExample)$' \
8686
./test/azure/... 2>&1 | tee /tmp/logs/azure-integration-tests.log
8787
8888
- name: Upload test logs

0 commit comments

Comments
 (0)