Skip to content

Commit

Permalink
merge fix
Browse files Browse the repository at this point in the history
  • Loading branch information
summeroff committed Dec 1, 2023
1 parent 5cc67bf commit 81378a9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CI/macos/02_build_obs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,18 @@ build_obs() {
set -o pipefail && xcodebuild -exportArchive -archivePath "obs-studio.xcarchive" -exportOptionsPlist "exportOptions.plist" -exportPath "." 2>&1 | xcbeautify
else
set +e
echo "Build OBS... list xcodebuild tartgets"
xcodebuild -list
echo "Build OBS... list xcodebuild tartgets and build settings"
xcodebuild -list -showBuildSettings
echo "Build OBS... list xcodebuild tartgets and destinations"
xcodebuild -list -showdestinations
echo "Build OBS... scheme obs-studio"
xcodebuild -scheme obs-studio -destination "generic/platform=macOS,name=Any Mac" -verbose -configuration RelWithDebInfo 2>&1 | xcbeautify 2>/dev/null
echo "Build OBS... scheme install"
xcodebuild -scheme install -destination "generic/platform=macOS,name=Any Mac" -verbose -configuration RelWithDebInfo 2>&1 | xcbeautify 2>/dev/null
echo "Build OBS... install"
xcodebuild install -destination "generic/platform=macOS,name=Any Mac" -verbose -configuration RelWithDebInfo 2>&1 | xcbeautify 2>/dev/null
set -e
mkdir OBS.app
ditto UI/RelWithDebInfo/OBS.app OBS.app
Expand Down

0 comments on commit 81378a9

Please sign in to comment.