Merge branch 'main' into auto-deploy-collab
This commit is contained in:
commit
c80395fc18
102 changed files with 4493 additions and 1390 deletions
|
@ -3,7 +3,7 @@
|
|||
set -e
|
||||
|
||||
export ZED_BUNDLE=true
|
||||
export MACOSX_DEPLOYMENT_TARGET=10.14
|
||||
export MACOSX_DEPLOYMENT_TARGET=10.15.7
|
||||
|
||||
echo "Installing cargo bundle"
|
||||
cargo install cargo-bundle --version 0.5.0
|
||||
|
@ -12,10 +12,13 @@ rustup target add wasm32-wasi
|
|||
# Deal with versions of macOS that don't include libstdc++ headers
|
||||
export CXXFLAGS="-stdlib=libc++"
|
||||
|
||||
echo "Compiling binaries"
|
||||
echo "Compiling zed binary for aarch64-apple-darwin"
|
||||
cargo build --release --package zed --target aarch64-apple-darwin
|
||||
echo "Compiling zed binary for x86_64-apple-darwin"
|
||||
cargo build --release --package zed --target x86_64-apple-darwin
|
||||
echo "Compiling cli binary for aarch64-apple-darwin"
|
||||
cargo build --release --package cli --target aarch64-apple-darwin
|
||||
echo "Compiling cli binary for x86_64-apple-darwin"
|
||||
cargo build --release --package cli --target x86_64-apple-darwin
|
||||
|
||||
echo "Creating application bundle"
|
||||
|
@ -33,6 +36,10 @@ lipo \
|
|||
-output \
|
||||
target/x86_64-apple-darwin/release/bundle/osx/Zed.app/Contents/MacOS/cli
|
||||
|
||||
echo "Copying WebRTC.framework into the frameworks folder"
|
||||
mkdir target/x86_64-apple-darwin/release/bundle/osx/Zed.app/Contents/Frameworks
|
||||
cp -R target/x86_64-apple-darwin/release/WebRTC.framework target/x86_64-apple-darwin/release/bundle/osx/Zed.app/Contents/Frameworks/
|
||||
|
||||
if [[ -n $MACOS_CERTIFICATE && -n $MACOS_CERTIFICATE_PASSWORD && -n $APPLE_NOTARIZATION_USERNAME && -n $APPLE_NOTARIZATION_PASSWORD ]]; then
|
||||
echo "Signing bundle with Apple-issued certificate"
|
||||
security create-keychain -p $MACOS_CERTIFICATE_PASSWORD zed.keychain || echo ""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue