Skip to content

Commit

Permalink
Merge pull request #246 from AArnott/AArnott-patch-1
Browse files Browse the repository at this point in the history
Fix PR build breaks
  • Loading branch information
AArnott authored Nov 5, 2018
2 parents a308e12 + ae52fb6 commit b88a742
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:

- job: Ubuntu_Xenial
dependsOn: Windows
condition: succeeded()
condition: and(succeeded(), ne(variables['system.pullrequest.isfork'], true))
pool:
vmImage: Ubuntu 16.04
container: xenial
Expand All @@ -120,7 +120,7 @@ jobs:

- job: Ubuntu_Bionic
dependsOn: Windows
condition: succeeded()
condition: and(succeeded(), ne(variables['system.pullrequest.isfork'], true))
pool:
vmImage: Ubuntu 16.04 # not a bug. we always use this pool, but use containers for the specific version
container: bionic
Expand All @@ -129,7 +129,7 @@ jobs:

- job: macOS
dependsOn: Windows
condition: succeeded()
condition: and(succeeded(), ne(variables['system.pullrequest.isfork'], true))
pool:
vmImage: macOS 10.13
steps:
Expand Down

0 comments on commit b88a742

Please sign in to comment.