Bump fsharp.py to get upstream nuget feed cleanup
[mono-project.git] / packaging / MacSDK / msbuild.py
bloba0226bbba2d2cd68d9b1ac2652b528f37a6ce5ec
1 import fileinput
3 class MSBuild (GitHubPackage):
4 def __init__ (self):
5 GitHubPackage.__init__ (self, 'mono', 'msbuild', '15', # note: fix scripts/ci/run-test-mac-sdk.sh when bumping the version number
6 revision = 'd094b49f5b5095efe15685431275b9c38fa6d845')
8 def build (self):
9 try:
10 self.sh ('./eng/cibuild_bootstrapped_msbuild.sh --host_type mono --configuration Release --skip_tests')
11 finally:
12 self.sh ('find artifacts stage1 -wholename \'*/log/*\' -type f -exec zip msbuild-bin-logs.zip {} \+')
14 def install (self):
15 # use the bootstrap msbuild as the system might not have one available!
16 self.sh ('./stage1/mono-msbuild/msbuild mono/build/install.proj /p:MonoInstallPrefix=%s /p:Configuration=Release-MONO /p:IgnoreDiffFailure=true' % self.staged_prefix)
18 MSBuild ()