Skip to content

Commit

Permalink
merge fix
Browse files Browse the repository at this point in the history
  • Loading branch information
summeroff committed Dec 2, 2023
1 parent b1fe61b commit e5034d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions CI/macos/02_build_obs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,14 @@ build_obs() {
pushd "build_${ARCH}" > /dev/null

if [[ "${PACKAGE}" && "${CODESIGN_IDENT:--}" != '-' ]]; then
set -o pipefail && xcodebuild -archivePath "obs-studio.xcarchive" -scheme obs-studio -destination "generic/platform=macOS,name=Any Mac'" archive 2>&1 | xcbeautify
set -o pipefail && xcodebuild -archivePath "obs-studio.xcarchive" -scheme obs-studio -destination "generic/platform=macOS,name=Any Mac" archive 2>&1 | xcbeautify
set -o pipefail && xcodebuild -exportArchive -archivePath "obs-studio.xcarchive" -exportOptionsPlist "exportOptions.plist" -exportPath "." 2>&1 | xcbeautify
else
set +e
mkdir install1
mkdir install2
mkdir install_dst1
mkdir install_dst2
mkdir obs-studio.xcarchive
export INSTALL_DIR1=$(pwd)/install1
export INSTALL_DIR2=$(pwd)/install2
export DSTROOT1=$(pwd)/install_dst1
Expand All @@ -72,7 +71,7 @@ build_obs() {
xcodebuild install -scheme ALL_BUILD -destination "generic/platform=macOS,name=Any Mac" SKIP_INSTALL=NO -derivedDataPath $INSTALL_DIR2 -archivePath $DSTROOT2 -verbose -configuration RelWithDebInfo 2>&1 | xcbeautify 2>/dev/null

echo "Build OBS... archive"
xcodebuild -archivePath "obs-studio.xcarchive" -scheme obs-studio -destination "generic/platform=macOS,name=Any Mac'" archive 2>&1 | xcbeautify
xcodebuild archive -archivePath "obs-studio.xcarchive" -scheme obs-studio -destination "generic/platform=macOS,name=Any Mac" 2>&1 | xcbeautify

echo "Build OBS... exportArchive"
xcodebuild -exportArchive -archivePath "obs-studio.xcarchive" -exportOptionsPlist "exportOptions.plist" -exportPath "." 2>&1 | xcbeautify
Expand Down
2 changes: 1 addition & 1 deletion plugins/mediasoup-connector

0 comments on commit e5034d7

Please sign in to comment.