You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
azure-pipelines.yml: Use macOS-10.14 instead of macOS-latest to prevent PlatformNotSupported and FileNotFoundException that appear to be related to the test fixture (we get no failed tests and they complete, but the run crashes)
Copy file name to clipboardExpand all lines: azure-pipelines.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -480,7 +480,7 @@ stages:
480
480
maximumAllowedFailures: 2# Maximum allowed failures for a successful build
481
481
macOS:
482
482
osName: 'macOS'
483
-
imageName: 'macOS-latest'
483
+
imageName: 'macOS-10.14'# macOS-latest should not be used here because we may get OS Darwin 19.6.0, which isn't supported fully (we get PlatformNotSupportedException).
484
484
maximumParallelJobs: 7
485
485
maximumAllowedFailures: 2# Maximum allowed failures for a successful build
486
486
displayName: 'Test netcoreapp3.1,x64 on'
@@ -514,7 +514,7 @@ stages:
514
514
maximumAllowedFailures: 2# Maximum allowed failures for a successful build
515
515
macOS:
516
516
osName: 'macOS'
517
-
imageName: 'macOS-latest'
517
+
imageName: 'macOS-10.14'# macOS-latest should not be used here because we may get OS Darwin 19.6.0, which isn't supported fully (we get PlatformNotSupportedException).
518
518
maximumParallelJobs: 7
519
519
maximumAllowedFailures: 2# Maximum allowed failures for a successful build
0 commit comments