File tree 4 files changed +11
-1
lines changed
4 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 47
47
buildConfiguration : ' Release'
48
48
49
49
steps :
50
+ - script : |
51
+ echo killing...; sudo pkill -9 XProtect >/dev/null || true;
52
+ echo waiting...; while pgrep XProtect; do sleep 3; done;
50
53
- task : NuGetToolInstaller@1
51
54
- script : make publish
52
55
Original file line number Diff line number Diff line change 59
59
buildConfiguration : ' Release'
60
60
61
61
steps :
62
+ - script : |
63
+ echo killing...; sudo pkill -9 XProtect >/dev/null || true;
64
+ echo waiting...; while pgrep XProtect; do sleep 3; done;
62
65
- task : NuGetToolInstaller@1
63
66
- script : make publish
64
67
- task : CopyFilesOverSSH@0
Original file line number Diff line number Diff line change 42
42
buildConfiguration : ' Release'
43
43
44
44
steps :
45
+ - script : |
46
+ echo killing...; sudo pkill -9 XProtect >/dev/null || true;
47
+ echo waiting...; while pgrep XProtect; do sleep 3; done;
45
48
- task : NuGetToolInstaller@1
46
49
- script : make publish
47
50
- task : CopyFilesOverSSH@0
Original file line number Diff line number Diff line change @@ -161,8 +161,9 @@ $(MAC_BUILD_RESULT): all-release
161
161
@echo $(COLOR_RED)Copying build data into $(COLOR_CYAN)OpenBVE.app$(COLOR_END)
162
162
@cp -r $(RELEASE_DIR)/* mac/OpenBVE.app/Contents/Resources/
163
163
164
+ # Because Azure is iffy on MacOS13, try creating DMG as root....
164
165
@echo $(COLOR_RED)Creating $(COLOR_CYAN)$(MAC_BUILD_RESULT)$(COLOR_END)
165
- @hdiutil create $(MAC_BUILD_RESULT) -volname "OpenBVE" -fs HFS+ -srcfolder "mac/OpenBVE.app"
166
+ @/usr/bin/sudo /usr/bin/ hdiutil create $(MAC_BUILD_RESULT) -volname "OpenBVE" -fs HFS+ -srcfolder "mac/OpenBVE.app"
166
167
@echo Renaming final output file
167
168
ifeq (, $(PROGRAM_VERSION ) )
168
169
@echo This is a $(COLOR_BLUE)Daily build$(COLOR_END)
You can’t perform that action at this time.
0 commit comments