#!/bin/bash set -x set -e TARGET_DIR=${1:-target} TAG_NAME=${TAG_NAME:-$(git show -s "--format=%cd-%h" "--date=format:%Y%m%d-%H%M%S")} HERE=$(pwd) if test -z "${SUDO+x}" && hash sudo 2>/dev/null; then SUDO="sudo" fi case $OSTYPE in darwin*) zipdir=WezTerm-macos-$TAG_NAME if [[ "$BUILD_REASON" == "Schedule" ]] ; then zipname=WezTerm-macos-nightly.zip else zipname=$zipdir.zip fi rm -rf $zipdir $zipname mkdir $zipdir cp -r assets/macos/WezTerm.app $zipdir/ # 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 mkdir -p $zipdir/WezTerm.app/Contents/MacOS mkdir -p $zipdir/WezTerm.app/Contents/Resources cp -r assets/shell-integration/* $zipdir/WezTerm.app/Contents/Resources 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 cp target/release/$bin $zipdir/WezTerm.app/Contents/MacOS/$bin 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. lipo target/*/release/$bin -output $zipdir/WezTerm.app/Contents/MacOS/$bin -create fi done set +x if [ -n "$MACOS_CERT" ] ; then echo $MACOS_CERT | base64 --decode > certificate.p12 security create-keychain -p "$MACOS_PW" build.keychain security default-keychain -s build.keychain security unlock-keychain -p "$MACOS_PW" build.keychain security import certificate.p12 -k build.keychain -P "$MACOS_PW" -T /usr/bin/codesign security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k "$MACOS_PW" build.keychain /usr/bin/codesign --force --options runtime --deep --sign "$MACOS_TEAM_ID" $zipdir/WezTerm.app/ fi set -x zip -r $zipname $zipdir set +x if [ -n "$MACOS_CERT" ] ; then xcrun notarytool submit $zipname --wait --team-id "$MACOS_TEAM_ID" --apple-id "$MACOS_APPLEID" --password "$MACOS_APP_PW" fi set -x SHA256=$(shasum -a 256 $zipname | cut -d' ' -f1) sed -e "s/@TAG@/$TAG_NAME/g" -e "s/@SHA256@/$SHA256/g" < ci/wezterm-homebrew-macos.rb.template > wezterm.rb ;; msys) zipdir=WezTerm-windows-$TAG_NAME if [[ "$BUILD_REASON" == "Schedule" ]] ; then zipname=WezTerm-windows-nightly.zip instname=WezTerm-nightly-setup else zipname=$zipdir.zip instname=WezTerm-${TAG_NAME}-setup fi rm -rf $zipdir $zipname mkdir $zipdir cp $TARGET_DIR/release/wezterm.exe \ $TARGET_DIR/release/wezterm-mux-server.exe \ $TARGET_DIR/release/wezterm-gui.exe \ $TARGET_DIR/release/strip-ansi-escapes.exe \ $TARGET_DIR/release/wezterm.pdb \ assets/windows/conhost/conpty.dll \ assets/windows/conhost/OpenConsole.exe \ assets/windows/angle/libEGL.dll \ assets/windows/angle/libGLESv2.dll \ $zipdir mkdir $zipdir/mesa cp $TARGET_DIR/release/mesa/opengl32.dll \ $zipdir/mesa 7z a -tzip $zipname $zipdir iscc.exe -DMyAppVersion=${TAG_NAME#nightly} -F${instname} ci/windows-installer.iss ;; linux-gnu) distro=$(lsb_release -is) distver=$(lsb_release -rs) case "$distro" in *Fedora*|*CentOS*) WEZTERM_RPM_VERSION=$(echo ${TAG_NAME#nightly-} | tr - _) cat > wezterm.spec < 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 cd ${HERE} mkdir -p %{buildroot}/usr/bin %{buildroot}/etc/profile.d install -Dsm755 target/release/wezterm -t %{buildroot}/usr/bin install -Dsm755 target/release/wezterm-mux-server -t %{buildroot}/usr/bin install -Dsm755 target/release/wezterm-gui -t %{buildroot}/usr/bin install -Dsm755 target/release/strip-ansi-escapes -t %{buildroot}/usr/bin install -Dm644 assets/shell-integration/* -t %{buildroot}/etc/profile.d 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 install -Dm644 assets/wezterm.appdata.xml %{buildroot}/usr/share/metainfo/org.wezfurlong.wezterm.appdata.xml %files /usr/bin/wezterm /usr/bin/wezterm-gui /usr/bin/wezterm-mux-server /usr/bin/strip-ansi-escapes /usr/share/icons/hicolor/128x128/apps/org.wezfurlong.wezterm.png /usr/share/applications/org.wezfurlong.wezterm.desktop /usr/share/metainfo/org.wezfurlong.wezterm.appdata.xml /etc/profile.d/* EOF /usr/bin/rpmbuild -bb --rmspec wezterm.spec --verbose ;; Ubuntu*|Debian*) rm -rf pkg mkdir -p pkg/debian/usr/bin pkg/debian/DEBIAN pkg/debian/usr/share/{applications,wezterm} cat > pkg/debian/control < Section: utils Priority: optional Homepage: https://wezfurlong.org/wezterm/ 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. Provides: x-terminal-emulator Source: https://wezfurlong.org/wezterm/ EOF install -Dsm755 -t pkg/debian/usr/bin target/release/wezterm-mux-server install -Dsm755 -t pkg/debian/usr/bin target/release/wezterm-gui install -Dsm755 -t pkg/debian/usr/bin target/release/wezterm install -Dsm755 -t pkg/debian/usr/bin target/release/strip-ansi-escapes 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 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 install -Dm644 assets/wezterm.appdata.xml pkg/debian/usr/share/metainfo/org.wezfurlong.wezterm.appdata.xml install -Dm644 assets/shell-integration/* -t pkg/debian/etc/profile.d if [[ "$BUILD_REASON" == "Schedule" ]] ; then debname=wezterm-nightly.$distro$distver else debname=wezterm-$TAG_NAME.$distro$distver fi fakeroot dpkg-deb --build pkg/debian $debname.deb if [[ "$BUILD_REASON" != '' ]] ; then $SUDO apt-get install ./$debname.deb fi mv pkg/debian pkg/wezterm tar cJf $debname.tar.xz -C pkg wezterm rm -rf pkg ;; esac ;; *) ;; esac