2019-03-24 05:39:25 +03:00
|
|
|
#!/bin/bash
|
|
|
|
set -x
|
2019-06-23 16:47:35 +03:00
|
|
|
set -e
|
2019-03-24 05:39:25 +03:00
|
|
|
|
2020-01-20 02:38:24 +03:00
|
|
|
TARGET_DIR=${1:-target}
|
|
|
|
|
2021-12-06 05:21:06 +03:00
|
|
|
TAG_NAME=${TAG_NAME:-$(git -c "core.abbrev=8" show -s "--format=%cd-%h" "--date=format:%Y%m%d-%H%M%S")}
|
2019-03-24 05:39:25 +03:00
|
|
|
|
|
|
|
HERE=$(pwd)
|
|
|
|
|
2021-09-26 04:34:01 +03:00
|
|
|
if test -z "${SUDO+x}" && hash sudo 2>/dev/null; then
|
|
|
|
SUDO="sudo"
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2019-03-24 05:39:25 +03:00
|
|
|
case $OSTYPE in
|
|
|
|
darwin*)
|
2020-02-13 00:16:13 +03:00
|
|
|
zipdir=WezTerm-macos-$TAG_NAME
|
2019-06-27 16:58:21 +03:00
|
|
|
if [[ "$BUILD_REASON" == "Schedule" ]] ; then
|
|
|
|
zipname=WezTerm-macos-nightly.zip
|
|
|
|
else
|
|
|
|
zipname=$zipdir.zip
|
|
|
|
fi
|
|
|
|
rm -rf $zipdir $zipname
|
2019-03-24 23:55:08 +03:00
|
|
|
mkdir $zipdir
|
|
|
|
cp -r assets/macos/WezTerm.app $zipdir/
|
2020-12-18 07:18:02 +03:00
|
|
|
# Omit MetalANGLE for now; it's a bit laggy compared to CGL,
|
|
|
|
# and on M1/Big Sur, CGL is implemented in terms of Metal anyway
|
|
|
|
rm $zipdir/WezTerm.app/*.dylib
|
2021-02-16 05:06:42 +03:00
|
|
|
mkdir -p $zipdir/WezTerm.app/Contents/MacOS
|
|
|
|
mkdir -p $zipdir/WezTerm.app/Contents/Resources
|
|
|
|
cp -r assets/shell-integration/* $zipdir/WezTerm.app/Contents/Resources
|
2021-01-13 08:12:54 +03:00
|
|
|
|
|
|
|
for bin in wezterm wezterm-mux-server wezterm-gui strip-ansi-escapes ; do
|
|
|
|
# If the user ran a simple `cargo build --release`, then we want to allow
|
|
|
|
# a single-arch package to be built
|
|
|
|
if [[ -f target/release/$bin ]] ; then
|
2021-02-16 05:06:42 +03:00
|
|
|
cp target/release/$bin $zipdir/WezTerm.app/Contents/MacOS/$bin
|
2021-01-13 08:12:54 +03:00
|
|
|
else
|
|
|
|
# The CI runs `cargo build --target XXX --release` which means that
|
|
|
|
# the binaries will be deployed in `target/XXX/release` instead of
|
|
|
|
# the plain path above.
|
|
|
|
# In that situation, we have two architectures to assemble into a
|
|
|
|
# Universal ("fat") binary, so we use the `lipo` tool for that.
|
2021-02-16 05:06:42 +03:00
|
|
|
lipo target/*/release/$bin -output $zipdir/WezTerm.app/Contents/MacOS/$bin -create
|
2021-01-13 08:12:54 +03:00
|
|
|
fi
|
|
|
|
done
|
2021-11-22 21:27:14 +03:00
|
|
|
|
|
|
|
set +x
|
2021-11-23 03:10:42 +03:00
|
|
|
if [ -n "$MACOS_TEAM_ID" ] ; then
|
2021-11-23 06:07:51 +03:00
|
|
|
MACOS_PW=$(echo $MACOS_CERT_PW | base64 --decode)
|
|
|
|
echo "pw sha"
|
|
|
|
echo $MACOS_PW | shasum
|
|
|
|
|
2021-11-23 03:10:42 +03:00
|
|
|
# Remove pesky additional quotes from default-keychain output
|
|
|
|
def_keychain=$(eval echo $(security default-keychain -d user))
|
|
|
|
echo "Default keychain is $def_keychain"
|
|
|
|
echo "Speculative delete of build.keychain"
|
|
|
|
security delete-keychain build.keychain || true
|
|
|
|
echo "Create build.keychain"
|
2021-11-23 06:07:51 +03:00
|
|
|
security create-keychain -p "$MACOS_PW" build.keychain
|
2021-11-23 03:10:42 +03:00
|
|
|
echo "Make build.keychain the default"
|
|
|
|
security default-keychain -d user -s build.keychain
|
|
|
|
echo "Unlock build.keychain"
|
2021-11-23 06:07:51 +03:00
|
|
|
security unlock-keychain -p "$MACOS_PW" build.keychain
|
2021-11-23 03:10:42 +03:00
|
|
|
echo "Import .p12 data"
|
|
|
|
echo $MACOS_CERT | base64 --decode > /tmp/certificate.p12
|
2021-11-23 04:31:16 +03:00
|
|
|
echo "decoded sha"
|
|
|
|
shasum /tmp/certificate.p12
|
2021-11-23 06:07:51 +03:00
|
|
|
security import /tmp/certificate.p12 -k build.keychain -P "$MACOS_PW" -T /usr/bin/codesign
|
2021-11-23 03:10:42 +03:00
|
|
|
rm /tmp/certificate.p12
|
|
|
|
echo "Grant apple tools access to build.keychain"
|
2021-11-23 06:07:51 +03:00
|
|
|
security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k "$MACOS_PW" build.keychain
|
2021-11-23 03:10:42 +03:00
|
|
|
echo "Codesign"
|
|
|
|
/usr/bin/codesign --keychain build.keychain --force --options runtime --deep --sign "$MACOS_TEAM_ID" $zipdir/WezTerm.app/
|
|
|
|
echo "Restore default keychain"
|
|
|
|
security default-keychain -d user -s $def_keychain
|
|
|
|
echo "Remove build.keychain"
|
|
|
|
security delete-keychain build.keychain || true
|
2021-11-22 21:27:14 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
set -x
|
2019-06-27 16:58:21 +03:00
|
|
|
zip -r $zipname $zipdir
|
2021-11-22 21:27:14 +03:00
|
|
|
set +x
|
|
|
|
|
2021-11-23 03:10:42 +03:00
|
|
|
if [ -n "$MACOS_TEAM_ID" ] ; then
|
|
|
|
echo "Notarize"
|
2021-11-22 21:27:14 +03:00
|
|
|
xcrun notarytool submit $zipname --wait --team-id "$MACOS_TEAM_ID" --apple-id "$MACOS_APPLEID" --password "$MACOS_APP_PW"
|
|
|
|
fi
|
|
|
|
set -x
|
2020-06-07 22:48:41 +03:00
|
|
|
|
|
|
|
SHA256=$(shasum -a 256 $zipname | cut -d' ' -f1)
|
2020-06-08 21:09:16 +03:00
|
|
|
sed -e "s/@TAG@/$TAG_NAME/g" -e "s/@SHA256@/$SHA256/g" < ci/wezterm-homebrew-macos.rb.template > wezterm.rb
|
2020-06-07 22:48:41 +03:00
|
|
|
|
2019-03-24 05:39:25 +03:00
|
|
|
;;
|
2019-03-24 20:42:20 +03:00
|
|
|
msys)
|
2020-02-13 00:16:13 +03:00
|
|
|
zipdir=WezTerm-windows-$TAG_NAME
|
2019-06-27 16:58:21 +03:00
|
|
|
if [[ "$BUILD_REASON" == "Schedule" ]] ; then
|
|
|
|
zipname=WezTerm-windows-nightly.zip
|
2020-05-25 10:12:36 +03:00
|
|
|
instname=WezTerm-nightly-setup
|
2019-06-27 16:58:21 +03:00
|
|
|
else
|
|
|
|
zipname=$zipdir.zip
|
2020-05-25 10:12:36 +03:00
|
|
|
instname=WezTerm-${TAG_NAME}-setup
|
2019-06-27 16:58:21 +03:00
|
|
|
fi
|
|
|
|
rm -rf $zipdir $zipname
|
2019-03-24 23:55:08 +03:00
|
|
|
mkdir $zipdir
|
2020-04-06 22:39:35 +03:00
|
|
|
cp $TARGET_DIR/release/wezterm.exe \
|
2020-10-03 10:10:04 +03:00
|
|
|
$TARGET_DIR/release/wezterm-mux-server.exe \
|
2020-10-25 02:54:36 +03:00
|
|
|
$TARGET_DIR/release/wezterm-gui.exe \
|
2020-05-18 07:51:07 +03:00
|
|
|
$TARGET_DIR/release/strip-ansi-escapes.exe \
|
2020-04-06 22:39:35 +03:00
|
|
|
$TARGET_DIR/release/wezterm.pdb \
|
|
|
|
assets/windows/conhost/conpty.dll \
|
|
|
|
assets/windows/conhost/OpenConsole.exe \
|
2021-02-09 19:34:58 +03:00
|
|
|
assets/windows/angle/libEGL.dll \
|
|
|
|
assets/windows/angle/libGLESv2.dll \
|
2020-04-06 22:39:35 +03:00
|
|
|
$zipdir
|
2020-10-02 04:31:57 +03:00
|
|
|
mkdir $zipdir/mesa
|
|
|
|
cp $TARGET_DIR/release/mesa/opengl32.dll \
|
|
|
|
$zipdir/mesa
|
2019-06-27 16:58:21 +03:00
|
|
|
7z a -tzip $zipname $zipdir
|
2020-05-25 10:12:36 +03:00
|
|
|
iscc.exe -DMyAppVersion=${TAG_NAME#nightly} -F${instname} ci/windows-installer.iss
|
2019-03-25 03:49:28 +03:00
|
|
|
;;
|
|
|
|
linux-gnu)
|
2020-05-03 21:21:58 +03:00
|
|
|
distro=$(lsb_release -is)
|
|
|
|
distver=$(lsb_release -rs)
|
|
|
|
case "$distro" in
|
2020-02-11 06:22:38 +03:00
|
|
|
*Fedora*|*CentOS*)
|
2019-12-29 19:41:50 +03:00
|
|
|
WEZTERM_RPM_VERSION=$(echo ${TAG_NAME#nightly-} | tr - _)
|
|
|
|
cat > wezterm.spec <<EOF
|
|
|
|
Name: wezterm
|
|
|
|
Version: ${WEZTERM_RPM_VERSION}
|
|
|
|
Release: 1%{?dist}
|
|
|
|
Packager: Wez Furlong <wez@wezfurlong.org>
|
|
|
|
License: MIT
|
|
|
|
URL: https://wezfurlong.org/wezterm/
|
|
|
|
Summary: Wez's Terminal Emulator.
|
|
|
|
Requires: dbus, fontconfig, openssl, libxcb, libxkbcommon, libxkbcommon-x11, libwayland-client, libwayland-egl, libwayland-cursor, mesa-libEGL, xcb-util-keysyms, xcb-util-wm
|
|
|
|
|
|
|
|
%description
|
|
|
|
wezterm is a terminal emulator with support for modern features
|
|
|
|
such as fonts with ligatures, hyperlinks, tabs and multiple
|
|
|
|
windows.
|
|
|
|
|
|
|
|
%build
|
|
|
|
echo "Doing the build bit here"
|
|
|
|
|
|
|
|
%install
|
|
|
|
set -x
|
2020-02-11 09:16:34 +03:00
|
|
|
cd ${HERE}
|
2020-11-14 20:24:21 +03:00
|
|
|
mkdir -p %{buildroot}/usr/bin %{buildroot}/etc/profile.d
|
2020-09-11 07:18:32 +03:00
|
|
|
install -Dsm755 target/release/wezterm -t %{buildroot}/usr/bin
|
2020-10-03 10:10:04 +03:00
|
|
|
install -Dsm755 target/release/wezterm-mux-server -t %{buildroot}/usr/bin
|
2020-10-25 03:17:45 +03:00
|
|
|
install -Dsm755 target/release/wezterm-gui -t %{buildroot}/usr/bin
|
2020-09-11 07:18:32 +03:00
|
|
|
install -Dsm755 target/release/strip-ansi-escapes -t %{buildroot}/usr/bin
|
2020-11-14 10:37:17 +03:00
|
|
|
install -Dm644 assets/shell-integration/* -t %{buildroot}/etc/profile.d
|
2020-01-21 10:11:38 +03:00
|
|
|
install -Dm644 assets/icon/terminal.png %{buildroot}/usr/share/icons/hicolor/128x128/apps/org.wezfurlong.wezterm.png
|
|
|
|
install -Dm644 assets/wezterm.desktop %{buildroot}/usr/share/applications/org.wezfurlong.wezterm.desktop
|
2020-05-05 08:55:33 +03:00
|
|
|
install -Dm644 assets/wezterm.appdata.xml %{buildroot}/usr/share/metainfo/org.wezfurlong.wezterm.appdata.xml
|
2019-12-29 19:41:50 +03:00
|
|
|
|
|
|
|
%files
|
|
|
|
/usr/bin/wezterm
|
2020-10-25 02:54:36 +03:00
|
|
|
/usr/bin/wezterm-gui
|
2020-10-03 10:10:04 +03:00
|
|
|
/usr/bin/wezterm-mux-server
|
2020-05-18 07:51:07 +03:00
|
|
|
/usr/bin/strip-ansi-escapes
|
2020-01-21 10:11:38 +03:00
|
|
|
/usr/share/icons/hicolor/128x128/apps/org.wezfurlong.wezterm.png
|
|
|
|
/usr/share/applications/org.wezfurlong.wezterm.desktop
|
2020-05-05 08:55:33 +03:00
|
|
|
/usr/share/metainfo/org.wezfurlong.wezterm.appdata.xml
|
2020-11-14 10:37:17 +03:00
|
|
|
/etc/profile.d/*
|
2019-12-29 19:41:50 +03:00
|
|
|
EOF
|
|
|
|
|
2020-02-11 09:16:34 +03:00
|
|
|
/usr/bin/rpmbuild -bb --rmspec wezterm.spec --verbose
|
2019-12-29 19:41:50 +03:00
|
|
|
|
|
|
|
;;
|
2019-03-25 03:49:28 +03:00
|
|
|
Ubuntu*|Debian*)
|
|
|
|
rm -rf pkg
|
2019-11-20 07:50:20 +03:00
|
|
|
mkdir -p pkg/debian/usr/bin pkg/debian/DEBIAN pkg/debian/usr/share/{applications,wezterm}
|
2021-09-26 05:49:10 +03:00
|
|
|
cat > pkg/debian/control <<EOF
|
2019-03-25 03:49:28 +03:00
|
|
|
Package: wezterm
|
2019-06-27 02:04:31 +03:00
|
|
|
Version: ${TAG_NAME#nightly-}
|
2020-11-10 12:27:45 +03:00
|
|
|
Architecture: $(dpkg-architecture -q DEB_BUILD_ARCH_CPU)
|
2019-03-25 03:49:28 +03:00
|
|
|
Maintainer: Wez Furlong <wez@wezfurlong.org>
|
|
|
|
Section: utils
|
|
|
|
Priority: optional
|
2019-12-29 19:41:50 +03:00
|
|
|
Homepage: https://wezfurlong.org/wezterm/
|
2019-03-25 03:49:28 +03:00
|
|
|
Description: Wez's Terminal Emulator.
|
|
|
|
wezterm is a terminal emulator with support for modern features
|
|
|
|
such as fonts with ligatures, hyperlinks, tabs and multiple
|
|
|
|
windows.
|
2021-09-13 18:36:58 +03:00
|
|
|
Provides: x-terminal-emulator
|
2021-09-26 05:49:10 +03:00
|
|
|
Source: https://wezfurlong.org/wezterm/
|
2019-03-25 03:49:28 +03:00
|
|
|
EOF
|
2021-09-26 05:49:10 +03:00
|
|
|
|
2020-10-03 10:10:04 +03:00
|
|
|
install -Dsm755 -t pkg/debian/usr/bin target/release/wezterm-mux-server
|
2020-10-25 02:54:36 +03:00
|
|
|
install -Dsm755 -t pkg/debian/usr/bin target/release/wezterm-gui
|
2020-01-21 10:11:38 +03:00
|
|
|
install -Dsm755 -t pkg/debian/usr/bin target/release/wezterm
|
2020-05-18 07:51:07 +03:00
|
|
|
install -Dsm755 -t pkg/debian/usr/bin target/release/strip-ansi-escapes
|
2021-09-26 08:19:01 +03:00
|
|
|
|
|
|
|
deps=$(cd pkg && dpkg-shlibdeps -O -e debian/usr/bin/*)
|
|
|
|
mv pkg/debian/control pkg/debian/DEBIAN/control
|
|
|
|
echo $deps | sed -e 's/shlibs:Depends=/Depends: /' >> pkg/debian/DEBIAN/control
|
|
|
|
cat pkg/debian/DEBIAN/control
|
|
|
|
|
2020-01-21 10:11:38 +03:00
|
|
|
install -Dm644 assets/icon/terminal.png pkg/debian/usr/share/icons/hicolor/128x128/apps/org.wezfurlong.wezterm.png
|
|
|
|
install -Dm644 assets/wezterm.desktop pkg/debian/usr/share/applications/org.wezfurlong.wezterm.desktop
|
2020-05-05 08:55:33 +03:00
|
|
|
install -Dm644 assets/wezterm.appdata.xml pkg/debian/usr/share/metainfo/org.wezfurlong.wezterm.appdata.xml
|
2020-11-14 10:37:17 +03:00
|
|
|
install -Dm644 assets/shell-integration/* -t pkg/debian/etc/profile.d
|
2019-06-27 16:58:21 +03:00
|
|
|
if [[ "$BUILD_REASON" == "Schedule" ]] ; then
|
2020-05-03 21:21:58 +03:00
|
|
|
debname=wezterm-nightly.$distro$distver
|
2019-06-27 16:58:21 +03:00
|
|
|
else
|
2020-05-03 21:21:58 +03:00
|
|
|
debname=wezterm-$TAG_NAME.$distro$distver
|
2019-06-27 16:58:21 +03:00
|
|
|
fi
|
|
|
|
fakeroot dpkg-deb --build pkg/debian $debname.deb
|
2021-09-26 04:02:25 +03:00
|
|
|
|
|
|
|
if [[ "$BUILD_REASON" != '' ]] ; then
|
2021-09-26 04:34:01 +03:00
|
|
|
$SUDO apt-get install ./$debname.deb
|
2021-09-26 04:02:25 +03:00
|
|
|
fi
|
|
|
|
|
2020-12-20 22:17:40 +03:00
|
|
|
mv pkg/debian pkg/wezterm
|
|
|
|
tar cJf $debname.tar.xz -C pkg wezterm
|
2019-03-25 03:49:28 +03:00
|
|
|
rm -rf pkg
|
|
|
|
;;
|
|
|
|
esac
|
2019-03-24 20:42:20 +03:00
|
|
|
;;
|
2019-03-24 05:39:25 +03:00
|
|
|
*)
|
|
|
|
;;
|
|
|
|
esac
|