2019-11-19 05:18:28 +03:00
|
|
|
#!/bin/bash
|
2019-11-21 05:01:07 +03:00
|
|
|
set -e
|
|
|
|
set +x
|
2019-11-19 05:18:28 +03:00
|
|
|
|
|
|
|
if [[ ("$1" == "-h") || ("$1" == "--help") ]]; then
|
2022-07-09 02:27:53 +03:00
|
|
|
echo "usage: $(basename "$0") [output-absolute-path] [--universal]"
|
2019-11-19 05:18:28 +03:00
|
|
|
echo
|
|
|
|
echo "Generate distributable .zip archive from ./checkout folder that was previously built."
|
|
|
|
echo
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2019-11-21 05:01:07 +03:00
|
|
|
ZIP_PATH=$1
|
|
|
|
if [[ $ZIP_PATH != /* ]]; then
|
|
|
|
echo "ERROR: path $ZIP_PATH is not absolute"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [[ $ZIP_PATH != *.zip ]]; then
|
|
|
|
echo "ERROR: path $ZIP_PATH must have .zip extension"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [[ -f $ZIP_PATH ]]; then
|
|
|
|
echo "ERROR: path $ZIP_PATH exists; can't do anything."
|
|
|
|
exit 1
|
|
|
|
fi
|
2021-08-07 15:32:18 +03:00
|
|
|
if ! [[ -d $(dirname "$ZIP_PATH") ]]; then
|
2019-11-21 05:01:07 +03:00
|
|
|
echo "ERROR: folder for path $($ZIP_PATH) does not exist."
|
|
|
|
exit 1
|
|
|
|
fi
|
2019-11-19 05:18:28 +03:00
|
|
|
|
2022-07-12 14:15:27 +03:00
|
|
|
IS_UNIVERSAL_BUILD=""
|
2022-07-09 02:27:53 +03:00
|
|
|
if [[ $2 == "--universal" ]]; then
|
2022-07-12 14:15:27 +03:00
|
|
|
IS_UNIVERSAL_BUILD=1
|
2022-07-09 02:27:53 +03:00
|
|
|
fi
|
|
|
|
|
2019-11-19 05:18:28 +03:00
|
|
|
main() {
|
2020-12-07 19:42:20 +03:00
|
|
|
if [[ ! -z "${WK_CHECKOUT_PATH}" ]]; then
|
|
|
|
cd "${WK_CHECKOUT_PATH}"
|
|
|
|
echo "WARNING: checkout path from WK_CHECKOUT_PATH env: ${WK_CHECKOUT_PATH}"
|
|
|
|
else
|
2021-10-14 20:20:06 +03:00
|
|
|
cd "$HOME/webkit"
|
2020-12-07 19:42:20 +03:00
|
|
|
fi
|
2019-11-19 05:18:28 +03:00
|
|
|
|
2019-11-21 05:01:07 +03:00
|
|
|
set -x
|
2022-04-22 22:35:35 +03:00
|
|
|
if is_mac; then
|
2019-11-19 05:18:28 +03:00
|
|
|
createZipForMac
|
2022-04-22 22:35:35 +03:00
|
|
|
elif is_linux; then
|
2019-11-19 05:18:28 +03:00
|
|
|
createZipForLinux
|
2022-04-22 22:35:35 +03:00
|
|
|
elif is_win; then
|
2020-01-17 02:32:50 +03:00
|
|
|
createZipForWindows
|
2019-11-19 05:18:28 +03:00
|
|
|
else
|
|
|
|
echo "ERROR: cannot upload on this platform!" 1>&2
|
|
|
|
exit 1;
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2020-07-24 01:57:53 +03:00
|
|
|
|
2019-11-19 05:18:28 +03:00
|
|
|
createZipForLinux() {
|
|
|
|
# create a TMP directory to copy all necessary files
|
2022-07-09 02:27:53 +03:00
|
|
|
local tmpdir=$(mktemp -d -p "$(pwd)/WebKitBuild" -t webkit-deploy-XXXXXXXXXX)
|
2021-08-07 15:32:18 +03:00
|
|
|
mkdir -p "$tmpdir"
|
2019-11-19 05:18:28 +03:00
|
|
|
|
|
|
|
# copy runner
|
2021-08-07 15:32:18 +03:00
|
|
|
cp -t "$tmpdir" "$SCRIPTS_DIR"/pw_run.sh
|
2019-11-19 05:18:28 +03:00
|
|
|
# copy protocol
|
2021-08-07 15:32:18 +03:00
|
|
|
node "$SCRIPTS_DIR"/concat_protocol.js > "$tmpdir"/protocol.json
|
2019-11-19 05:18:28 +03:00
|
|
|
|
2020-08-28 20:48:57 +03:00
|
|
|
# Generate and unpack MiniBrowser bundles for each port
|
|
|
|
for port in gtk wpe; do
|
2022-07-12 14:15:27 +03:00
|
|
|
if [[ -n "${IS_UNIVERSAL_BUILD}" ]]; then
|
2022-07-09 02:27:53 +03:00
|
|
|
Tools/Scripts/generate-bundle \
|
|
|
|
--syslibs=bundle-all \
|
|
|
|
--bundle=MiniBrowser --release \
|
|
|
|
--platform=${port} --destination="${tmpdir}"
|
|
|
|
else
|
|
|
|
WEBKIT_OUTPUTDIR=$(pwd)/WebKitBuild/${port^^} \
|
|
|
|
Tools/Scripts/generate-bundle \
|
|
|
|
--bundle=MiniBrowser --release \
|
|
|
|
--platform=${port} --destination="${tmpdir}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
unzip "${tmpdir}"/MiniBrowser_${port}_release.zip -d "${tmpdir}"/minibrowser-${port}
|
|
|
|
rm -f "${tmpdir}"/MiniBrowser_${port}_release.zip
|
2020-08-28 20:48:57 +03:00
|
|
|
done
|
2019-11-19 05:18:28 +03:00
|
|
|
|
2021-08-07 15:32:18 +03:00
|
|
|
cd "$tmpdir"
|
2022-07-12 00:40:23 +03:00
|
|
|
|
2022-07-12 14:15:27 +03:00
|
|
|
if [[ -n "${IS_UNIVERSAL_BUILD}" ]]; then
|
|
|
|
# De-duplicate common files: convert to relative symlinks identical files (same hash).
|
|
|
|
# We apply this algorithm only to unified build since in JHBuild WPE/Minibrowser
|
|
|
|
# and GTK/Minibrowser executables are identical and should not be symlinked.
|
2022-07-12 00:40:23 +03:00
|
|
|
rdfind -deterministic true -makesymlinks true -makehardlinks false -makeresultsfile false .
|
2022-07-12 14:15:27 +03:00
|
|
|
symlinks -rc .
|
2022-07-12 00:40:23 +03:00
|
|
|
fi
|
2022-07-12 14:15:27 +03:00
|
|
|
|
2022-07-09 02:27:53 +03:00
|
|
|
# zip resulting directory and cleanup TMP.
|
2021-08-07 15:32:18 +03:00
|
|
|
zip --symlinks -r "$ZIP_PATH" ./
|
2020-01-11 06:14:55 +03:00
|
|
|
cd -
|
2021-08-07 15:32:18 +03:00
|
|
|
rm -rf "$tmpdir"
|
2019-11-19 05:18:28 +03:00
|
|
|
}
|
|
|
|
|
2020-01-17 02:32:50 +03:00
|
|
|
createZipForWindows() {
|
|
|
|
# create a TMP directory to copy all necessary files
|
|
|
|
local tmpdir="/tmp/webkit-deploy-$(date +%s)"
|
2021-08-07 15:32:18 +03:00
|
|
|
mkdir -p "$tmpdir"
|
2020-01-17 02:32:50 +03:00
|
|
|
|
2021-08-07 15:32:18 +03:00
|
|
|
cp -t "$tmpdir" ./WebKitLibraries/win/bin64/*.dll
|
2020-01-17 02:32:50 +03:00
|
|
|
cd WebKitBuild/Release/bin64
|
2021-08-07 15:32:18 +03:00
|
|
|
cp -r -t "$tmpdir" WebKit.resources
|
|
|
|
cp -t "$tmpdir" JavaScriptCore.dll PlaywrightLib.dll WTF.dll WebKit2.dll libEGL.dll libGLESv2.dll
|
|
|
|
cp -t "$tmpdir" Playwright.exe WebKitNetworkProcess.exe WebKitWebProcess.exe
|
2020-01-17 02:32:50 +03:00
|
|
|
cd -
|
2020-11-06 03:51:42 +03:00
|
|
|
cd "$(printMSVCRedistDir)"
|
2021-08-07 15:32:18 +03:00
|
|
|
cp -t "$tmpdir" msvcp140.dll vcruntime140.dll vcruntime140_1.dll msvcp140_2.dll
|
2020-01-17 20:24:45 +03:00
|
|
|
cd -
|
2020-01-17 02:32:50 +03:00
|
|
|
|
|
|
|
# copy protocol
|
2021-08-07 15:32:18 +03:00
|
|
|
node "$SCRIPTS_DIR"/concat_protocol.js > "$tmpdir"/protocol.json
|
2020-01-17 02:32:50 +03:00
|
|
|
# tar resulting directory and cleanup TMP.
|
2021-08-07 15:32:18 +03:00
|
|
|
cd "$tmpdir"
|
|
|
|
zip -r "$ZIP_PATH" ./
|
2020-01-17 02:32:50 +03:00
|
|
|
cd -
|
2021-08-07 15:32:18 +03:00
|
|
|
rm -rf "$tmpdir"
|
2020-01-17 02:32:50 +03:00
|
|
|
}
|
|
|
|
|
2019-11-19 05:18:28 +03:00
|
|
|
createZipForMac() {
|
|
|
|
# create a TMP directory to copy all necessary files
|
|
|
|
local tmpdir=$(mktemp -d)
|
|
|
|
|
|
|
|
# copy all relevant files
|
2021-08-11 02:47:02 +03:00
|
|
|
ditto {./WebKitBuild/Release,"$tmpdir"}/com.apple.WebKit.GPU.xpc
|
2021-08-07 15:32:18 +03:00
|
|
|
ditto {./WebKitBuild/Release,"$tmpdir"}/com.apple.WebKit.Networking.xpc
|
|
|
|
ditto {./WebKitBuild/Release,"$tmpdir"}/com.apple.WebKit.WebContent.xpc
|
|
|
|
ditto {./WebKitBuild/Release,"$tmpdir"}/JavaScriptCore.framework
|
|
|
|
ditto {./WebKitBuild/Release,"$tmpdir"}/libANGLE-shared.dylib
|
|
|
|
ditto {./WebKitBuild/Release,"$tmpdir"}/libwebrtc.dylib
|
|
|
|
ditto {./WebKitBuild/Release,"$tmpdir"}/Playwright.app
|
|
|
|
ditto {./WebKitBuild/Release,"$tmpdir"}/WebCore.framework
|
|
|
|
ditto {./WebKitBuild/Release,"$tmpdir"}/WebInspectorUI.framework
|
|
|
|
ditto {./WebKitBuild/Release,"$tmpdir"}/WebKit.framework
|
|
|
|
ditto {./WebKitBuild/Release,"$tmpdir"}/WebKitLegacy.framework
|
|
|
|
ditto {"$SCRIPTS_DIR","$tmpdir"}/pw_run.sh
|
2019-11-19 05:18:28 +03:00
|
|
|
# copy protocol
|
2021-08-07 15:32:18 +03:00
|
|
|
node "$SCRIPTS_DIR"/concat_protocol.js > "$tmpdir"/protocol.json
|
2019-11-19 05:18:28 +03:00
|
|
|
|
2021-02-20 08:31:33 +03:00
|
|
|
# Remove all broken symlinks. @see https://github.com/microsoft/playwright/issues/5472
|
|
|
|
find "${tmpdir}" -type l ! -exec test -e {} \; -print | xargs rm
|
|
|
|
|
2019-11-19 05:18:28 +03:00
|
|
|
# zip resulting directory and cleanup TMP.
|
2021-08-07 15:32:18 +03:00
|
|
|
ditto -c -k "$tmpdir" "$ZIP_PATH"
|
|
|
|
rm -rf "$tmpdir"
|
2019-11-19 05:18:28 +03:00
|
|
|
}
|
|
|
|
|
2019-11-20 03:08:27 +03:00
|
|
|
trap "cd $(pwd -P)" EXIT
|
2020-06-04 03:47:33 +03:00
|
|
|
cd "$(dirname "$0")"
|
|
|
|
SCRIPTS_DIR="$(pwd -P)"
|
2021-11-06 01:28:44 +03:00
|
|
|
source "${SCRIPTS_DIR}/../utils.sh"
|
2019-11-20 03:08:27 +03:00
|
|
|
|
2019-11-19 05:18:28 +03:00
|
|
|
main "$@"
|