We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5338e6c commit 785eb36Copy full SHA for 785eb36
sdk/communication/azure-communication-email/tests.yml
@@ -1,11 +1,20 @@
1
trigger: none
2
3
+parameters:
4
+ - name: runOnlyPPE
5
+ displayName: "Run only the PPE stage"
6
+ type: boolean
7
+ default: false
8
+
9
stages:
10
- template: /sdk/communication/communication-tests-template.yml
11
parameters:
12
PackageName: azure-communication-email
13
SafeName: azurecommunicationemail
- Clouds: 'Public,PPE,Int'
14
+ ${{ if eq(parameters.runOnlyPPE, true) }}:
15
+ Clouds: 'PPE'
16
+ ${{ if eq(parameters.runOnlyPPE, false) }}:
17
+ Clouds: 'Public,PPE,Int'
18
CloudConfig:
19
Public:
20
SubscriptionConfigurations:
0 commit comments