Skip to content

Commit

Permalink
Work CD-CI
Browse files Browse the repository at this point in the history
- Update conditions on all jobs.

***NO_CI***
  • Loading branch information
josesimoes committed Oct 23, 2019
1 parent 8f8375c commit ff8bdb2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:

##############################
- job: Build_mscorlib
condition: eq(variables['UPDATE_DEPENDENTS'], 'false')
pool:
vmImage: 'VS2017-Win2016'

Expand All @@ -49,6 +50,7 @@ jobs:

##############################
- job: Build_mscorlib_no_reflection
condition: eq(variables['UPDATE_DEPENDENTS'], 'false')
pool:
vmImage: 'VS2017-Win2016'

Expand All @@ -69,7 +71,7 @@ jobs:

##############################
- job: Update_Dependencies
condition: ne( variables['StartReleaseCandidate'], true )
condition: and( ne( variables['StartReleaseCandidate'], true ), eq(variables['UPDATE_DEPENDENTS'], true) )

dependsOn:
- Build_mscorlib
Expand Down

0 comments on commit ff8bdb2

Please sign in to comment.