[tests] Reenable enum equals test on interpreter (#18673)
[mono-project.git] / packaging / MacSDK / msbuild.py
blobe1fdde08621f4b2598b3d19fb27248416c3bdab2
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 = '0ed4ac3704aa3a395e6512fc6a0c0f6734fd2afc')
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 ()