From 48c004467393f5f52a590c384310aa398d77524a Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Sat, 25 Sep 2021 18:02:25 -0700 Subject: [PATCH] ci: attempt to install the .deb after we build This is an attempt to verify that we got the right dep names refs: #1052 --- ci/deploy.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ci/deploy.sh b/ci/deploy.sh index 3512e86dcb0..1a2ef25702d 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -156,6 +156,11 @@ EOF 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