Skip to content

Commit

Permalink
Add skip conditions on test and analyze jobs. (AzureSDKAutomation#7658)
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchdenny authored Oct 7, 2019
1 parent cc4bdb0 commit 94aaa99
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions eng/pipelines/templates/jobs/archetype-sdk-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
BeforePublishSteps: ${{ parameters.BeforePublishSteps }}

- job: 'Analyze'
condition: ne(variables['Skip.Analyze'], 'true')
variables:
- template: ../variables/globals.yml

Expand All @@ -34,6 +35,7 @@ jobs:
- template: ../steps/analyze.yml

- job: 'Test'
condition: ne(variables['Skip.Test'], 'true')
timeoutInMinutes: ${{ parameters.TestTimeoutInMinutes }}
variables:
- template: ../variables/globals.yml
Expand Down

0 comments on commit 94aaa99

Please sign in to comment.