Skip to content

Commit

Permalink
Change environment flags.
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchdenny committed Aug 14, 2019
1 parent fe018b6 commit 880672c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion eng/pipelines/templates/jobs/archetype-sdk-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ jobs:

- task: Maven@3
displayName: 'Start Jetty'
condition: ne(variables['EnableJetty'], 'false')
condition: ne(variables['SdkType'], 'client')
inputs:
mavenPomFile: pom.client.xml
options: '$(DefaultOptions) $(ProfileFlag)'
Expand Down
1 change: 1 addition & 0 deletions sdk/keyvault/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ pr:
- sdk/keyvault/microsoft-azure



stages:
- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml
parameters:
Expand Down
8 changes: 4 additions & 4 deletions sdk/keyvault/pom.service.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<id>data</id>
<activation>
<property>
<name>env.ENABLEJETTY</name>
<value>true</value>
<name>env.SDKTYPE</name>
<value>data</value>
</property>
</activation>
<modules>
Expand All @@ -30,8 +30,8 @@
<id>client</id>
<activation>
<property>
<name>env.ENABLEJETTY</name>
<value>!true</value>
<name>env.SDKTYPE</name>
<value>!data</value>
</property>
</activation>
<modules>
Expand Down

0 comments on commit 880672c

Please sign in to comment.