Skip to content

Commit

Permalink
azure-pipelines.yml: Use macOS-10.14 instead of macOS-latest to preve…
Browse files Browse the repository at this point in the history
…nt PlatformNotSupported and FileNotFoundException that appear to be related to the test fixture (we get no failed tests and they complete, but the run crashes)
  • Loading branch information
NightOwl888 committed Oct 26, 2021
1 parent 9e84772 commit 2f67981
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ stages:
maximumAllowedFailures: 2 # Maximum allowed failures for a successful build
macOS:
osName: 'macOS'
imageName: 'macOS-latest'
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).
maximumParallelJobs: 7
maximumAllowedFailures: 2 # Maximum allowed failures for a successful build
displayName: 'Test netcoreapp3.1,x64 on'
Expand Down Expand Up @@ -514,7 +514,7 @@ stages:
maximumAllowedFailures: 2 # Maximum allowed failures for a successful build
macOS:
osName: 'macOS'
imageName: 'macOS-latest'
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).
maximumParallelJobs: 7
maximumAllowedFailures: 2 # Maximum allowed failures for a successful build
displayName: 'Test netcoreapp3.1,x86 on'
Expand Down

0 comments on commit 2f67981

Please sign in to comment.