Skip to content

Commit

Permalink
merge fix
Browse files Browse the repository at this point in the history
  • Loading branch information
summeroff committed Nov 29, 2023
1 parent f76da71 commit 5256b65
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions CI/macos/02_build_obs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,23 @@ build_obs() {

unset NSUnbufferedIO
else
step "Build OBS..."
status "Build OBS..."
cmake --build --preset macos-${ARCH} -v
step "Install OBS..."
status "Install OBS..."
cmake --build --target install --preset macos-${ARCH} -v
fi
ls -laR .
status "Build OBS done"

status "Build OBS try xcodebuild again scheme obs-studio"
set -o pipefail && xcodebuild -scheme obs-studio -destination "generic/platform=macOS,name=Any Mac" -configuration RelWithDebInfo 2>&1 | xcbeautify 2>/dev/null
status "Build OBS try xcodebuild again scheme install"
set -o pipefail && xcodebuild -scheme install -destination "generic/platform=macOS,name=Any Mac" -configuration RelWithDebInfo 2>&1 | xcbeautify 2>/dev/null

status "Build OBS try xcodebuild again archivePath"
set -o pipefail && xcodebuild -archivePath "obs-studio.xcarchive" -scheme obs-studio -destination "generic/platform=macOS,name=Any Mac'" archive 2>&1 | xcbeautify 2>/dev/null
status "Build OBS try xcodebuild again exportArchive"
set -o pipefail && xcodebuild -exportArchive -archivePath "obs-studio.xcarchive" -exportOptionsPlist "exportOptions.plist" -exportPath "." 2>&1 | xcbeautify 2>/dev/null
}

bundle_obs() {
Expand Down

0 comments on commit 5256b65

Please sign in to comment.