@@ -50,11 +50,9 @@ phases:
50
50
queue :
51
51
name : Hosted macOS
52
52
steps :
53
+ # Work around MacOS Homebrew image/environment bug: https://github.com/actions/virtual-environments/issues/2322#issuecomment-749211076
53
54
- script : |
54
- brew uninstall [email protected] |
55
- brew uninstall [email protected] |
56
- brew untap local/openssl |
57
- brew untap local/python2
55
+ rm -rf /usr/local/bin/2to3
58
56
displayName: MacOS Homebrew bug Workaround
59
57
continueOnError: true
60
58
-
script :
brew update && brew unlink [email protected] && brew install mono-libgdiplus && brew install $(Build.SourcesDirectory)/build/libomp.rb && brew link libomp --force
@@ -235,7 +233,7 @@ phases:
235
233
# Depending on the value of DotNetFinalVersionKind, the name of the package will change.
236
234
# For our nightly builds we want it to be empty, and when creating the official nugets, we want it to be "release"
237
235
# the value of the version kind is set when queuing the publishing job on AzureDevOps by adding a VERSIONKIND variable
238
- # See more info in: https://github.com/dotnet/arcade/blob/master/Documentation/CorePackages/Versioning.md#package-version
236
+ # See more info in: https://github.com/dotnet/arcade/blob/master/Documentation/CorePackages/Versioning.md#package-version
239
237
- script : ./build.cmd -configuration $(BuildConfig) -pack -ci /p:OfficialBuildId=$(OfficialBuildId) /p:DotNetFinalVersionKind=$(DotnetVersionKind) /p:RestorePackagesPath=$(Build.SourcesDirectory)\packages /p:NUGET_PACKAGES=$(Build.SourcesDirectory)\packages
240
238
displayName : Build Packages
241
239
@@ -261,7 +259,7 @@ phases:
261
259
displayName : Push packages to AzureDevOps feed
262
260
inputs :
263
261
command : push
264
- packagesToPush : $(Build.SourcesDirectory)/artifacts/**/*.nupkg;!$(Build.SourcesDirectory)/artifacts/**/*.snupkg
262
+ packagesToPush : $(Build.SourcesDirectory)/artifacts/**/*.nupkg;!$(Build.SourcesDirectory)/artifacts/**/*.snupkg
265
263
nuGetFeedType : external
266
264
publishFeedCredentials : machinelearning-dnceng-public-feed
267
265
0 commit comments