Skip to content

Commit b88a742

Browse files
authoredNov 5, 2018
Merge pull request #246 from AArnott/AArnott-patch-1
Fix PR build breaks
2 parents a308e12 + ae52fb6 commit b88a742

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎azure-pipelines.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109

110110
- job: Ubuntu_Xenial
111111
dependsOn: Windows
112-
condition: succeeded()
112+
condition: and(succeeded(), ne(variables['system.pullrequest.isfork'], true))
113113
pool:
114114
vmImage: Ubuntu 16.04
115115
container: xenial
@@ -120,7 +120,7 @@ jobs:
120120

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

130130
- job: macOS
131131
dependsOn: Windows
132-
condition: succeeded()
132+
condition: and(succeeded(), ne(variables['system.pullrequest.isfork'], true))
133133
pool:
134134
vmImage: macOS 10.13
135135
steps:

0 commit comments

Comments
 (0)
Please sign in to comment.