Skip to content

Commit 0e8f711

Browse files
committed
Merge branch 'personal/v-rachitsh/pipelinefix' of https://github.com/microsoft/azure-health-data-services-toolkit into personal/v-rachitsh/pipelinefix
2 parents b0d6af1 + 40a2df0 commit 0e8f711

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

.azdo/pipelines/ci-pipeline.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: $(SourceBranchName)-$(Date:yyyyMMdd)$(Rev:-r)
55
trigger: none
66

77
variables:
8-
#- group: toolkit-test-pack
8+
- group: toolkit-test-pack
99
- group: toolkit-build-version-configuration
1010

1111
stages:
@@ -25,7 +25,6 @@ stages:
2525
- template: ./steps/build.yml
2626
parameters:
2727
targetBuildFramework: 'net8.0'
28-
unitTest : false
2928

3029
- template: ./steps/versionVariables.yml
3130

.azdo/pipelines/steps/build.yml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,13 @@ steps:
3333
failOnAlert: true
3434

3535
- ${{ if eq(parameters.unitTest, 'true') }}:
36+
- script: |
37+
echo "TENANT: $AZURE_TENANT_ID"
38+
echo "CLIENT: $AZURE_CLIENT_ID"
39+
displayName: 'Echo Azure Auth Vars'
40+
env:
41+
AZURE_TENANT_ID: $(proxy-tenant-id)
42+
AZURE_CLIENT_ID: $(kv-client-id)
3643
- task: DotNetCoreCLI@2
3744
inputs:
3845
command: 'test'
@@ -41,10 +48,10 @@ steps:
4148
projects: '**/Microsoft.AzureHealth.DataServices.Tests.csproj'
4249
displayName: 'Run all tests'
4350
env:
44-
PROXY_TenantId: $(proxy-tenant-id)
45-
PROXY_ClientId: $(kv-client-id)
46-
PROXY_ClientSecret: $(kv-client-secret)
47-
PROXY_FhirServerUrl: $(fhir-api-url)
51+
AZURE_TENANT_ID: $(proxy-tenant-id)
52+
AZURE_CLIENT_ID: $(kv-client-id)
53+
AZURE_CLIENT_SECRET: $(kv-client-secret)
54+
FhirServerUrl: $(fhir-api-url)
4855
PROXY_KeyVaultUri: $(proxy-key-vault-uri)
4956
PROXY_KeyVaultCertificateName: $(proxy-key-vault-certificate-name)
5057
PROXY_InstrumentationKey: $(proxy-instrumentation-key)
@@ -83,4 +90,5 @@ steps:
8390
PROXY_EventGrid_Message_Queue: $(eventgrid-message-queue)
8491
PROXY_EventGrid_Reference_Queue: $(eventgrid-reference-queue)
8592
PROXY_CacheConnectionString: $(cicd-redis-cache-connectionstring)
86-
PROXY_CacheHostName: $(cicd-redis-cache-hostname)
93+
PROXY_CacheHostName: $(cicd-redis-cache-hostname)
94+

0 commit comments

Comments
 (0)