mirror of
https://github.com/wez/wezterm.git
synced 2024-12-23 05:12:40 +03:00
Windows: Add Inno Setup based installer
closes: https://github.com/wez/wezterm/pull/193
This commit is contained in:
parent
b8738c769d
commit
07386e446b
2
.github/workflows/gen_windows.yml
vendored
2
.github/workflows/gen_windows.yml
vendored
@ -70,7 +70,7 @@ jobs:
|
|||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
mkdir pkg_
|
mkdir pkg_
|
||||||
mv *.zip pkg_
|
mv *.zip *.exe pkg_
|
||||||
|
|
||||||
|
|
||||||
- name: "Upload artifact"
|
- name: "Upload artifact"
|
||||||
|
2
.github/workflows/gen_windows_continuous.yml
vendored
2
.github/workflows/gen_windows_continuous.yml
vendored
@ -78,6 +78,6 @@ jobs:
|
|||||||
- name: "Upload to Nightly Release"
|
- name: "Upload to Nightly Release"
|
||||||
uses: wez/upload-release-assets@releases/v1
|
uses: wez/upload-release-assets@releases/v1
|
||||||
with:
|
with:
|
||||||
files: "WezTerm-*.zip"
|
files: "WezTerm-*.zip;WezTerm-*.exe"
|
||||||
release-tag: "nightly"
|
release-tag: "nightly"
|
||||||
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
5
.github/workflows/gen_windows_tag.yml
vendored
5
.github/workflows/gen_windows_tag.yml
vendored
@ -63,6 +63,9 @@ jobs:
|
|||||||
- name: "Upload to Tagged Release"
|
- name: "Upload to Tagged Release"
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
with:
|
with:
|
||||||
files: "WezTerm-*.zip"
|
files: |
|
||||||
|
WezTerm-*.zip
|
||||||
|
WezTerm-*.exe
|
||||||
|
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,6 +1,7 @@
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
/docs/_site
|
/docs/_site
|
||||||
/WezTerm*.zip
|
/WezTerm*.zip
|
||||||
|
/WezTerm*.exe
|
||||||
/wezterm*.deb
|
/wezterm*.deb
|
||||||
/wezterm*.tar.xz
|
/wezterm*.tar.xz
|
||||||
/pkg
|
/pkg
|
||||||
|
@ -35,8 +35,10 @@ case $OSTYPE in
|
|||||||
zipdir=WezTerm-windows-$TAG_NAME
|
zipdir=WezTerm-windows-$TAG_NAME
|
||||||
if [[ "$BUILD_REASON" == "Schedule" ]] ; then
|
if [[ "$BUILD_REASON" == "Schedule" ]] ; then
|
||||||
zipname=WezTerm-windows-nightly.zip
|
zipname=WezTerm-windows-nightly.zip
|
||||||
|
instname=WezTerm-nightly-setup
|
||||||
else
|
else
|
||||||
zipname=$zipdir.zip
|
zipname=$zipdir.zip
|
||||||
|
instname=WezTerm-${TAG_NAME}-setup
|
||||||
fi
|
fi
|
||||||
rm -rf $zipdir $zipname
|
rm -rf $zipdir $zipname
|
||||||
mkdir $zipdir
|
mkdir $zipdir
|
||||||
@ -48,6 +50,7 @@ case $OSTYPE in
|
|||||||
$zipdir
|
$zipdir
|
||||||
cp -r assets/colors $zipdir/
|
cp -r assets/colors $zipdir/
|
||||||
7z a -tzip $zipname $zipdir
|
7z a -tzip $zipname $zipdir
|
||||||
|
iscc.exe -DMyAppVersion=${TAG_NAME#nightly} -F${instname} ci/windows-installer.iss
|
||||||
;;
|
;;
|
||||||
linux-gnu)
|
linux-gnu)
|
||||||
distro=$(lsb_release -is)
|
distro=$(lsb_release -is)
|
||||||
|
@ -259,7 +259,9 @@ cargo build --all --release""",
|
|||||||
run = "mkdir pkg_\n"
|
run = "mkdir pkg_\n"
|
||||||
if self.uses_yum():
|
if self.uses_yum():
|
||||||
run += "mv ~/rpmbuild/RPMS/*/*.rpm pkg_\n"
|
run += "mv ~/rpmbuild/RPMS/*/*.rpm pkg_\n"
|
||||||
if ("win" in self.name) or ("mac" in self.name):
|
if "win" in self.name:
|
||||||
|
run += "mv *.zip *.exe pkg_\n"
|
||||||
|
if "mac" in self.name:
|
||||||
run += "mv *.zip pkg_\n"
|
run += "mv *.zip pkg_\n"
|
||||||
if ("ubuntu" in self.name) or ("debian" in self.name):
|
if ("ubuntu" in self.name) or ("debian" in self.name):
|
||||||
run += "mv *.deb *.xz pkg_\n"
|
run += "mv *.deb *.xz pkg_\n"
|
||||||
@ -279,7 +281,9 @@ cargo build --all --release""",
|
|||||||
patterns = []
|
patterns = []
|
||||||
if self.uses_yum():
|
if self.uses_yum():
|
||||||
patterns += ["wezterm-*.rpm"]
|
patterns += ["wezterm-*.rpm"]
|
||||||
elif ("win" in self.name) or ("mac" in self.name):
|
elif "win" in self.name:
|
||||||
|
patterns += ["WezTerm-*.zip", "WezTerm-*.exe"]
|
||||||
|
elif "mac" in self.name:
|
||||||
patterns += ["WezTerm-*.zip"]
|
patterns += ["WezTerm-*.zip"]
|
||||||
elif ("ubuntu" in self.name) or ("debian" in self.name):
|
elif ("ubuntu" in self.name) or ("debian" in self.name):
|
||||||
patterns += ["wezterm-*.deb", "wezterm-*.xz", "wezterm-*.tar.gz"]
|
patterns += ["wezterm-*.deb", "wezterm-*.xz", "wezterm-*.tar.gz"]
|
||||||
|
136
ci/windows-installer.iss
Normal file
136
ci/windows-installer.iss
Normal file
@ -0,0 +1,136 @@
|
|||||||
|
; Script generated by the Inno Setup Script Wizard.
|
||||||
|
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
||||||
|
; vim:ts=2:sw=2:et:
|
||||||
|
|
||||||
|
#define MyAppName "WezTerm"
|
||||||
|
;#define MyAppVersion "1.5"
|
||||||
|
#define MyAppPublisher "Wez Furlong"
|
||||||
|
#define MyAppURL "http://wezfurlong.org/wezterm"
|
||||||
|
#define MyAppExeName "wezterm.exe"
|
||||||
|
|
||||||
|
[Setup]
|
||||||
|
AppId={{BCF6F0DA-5B9A-408D-8562-F680AE6E1EAF}
|
||||||
|
ArchitecturesAllowed=x64
|
||||||
|
ArchitecturesInstallIn64BitMode=x64
|
||||||
|
AppName={#MyAppName}
|
||||||
|
AppVersion={#MyAppVersion}
|
||||||
|
;AppVerName={#MyAppName} {#MyAppVersion}
|
||||||
|
AppPublisher={#MyAppPublisher}
|
||||||
|
AppPublisherURL={#MyAppURL}
|
||||||
|
AppSupportURL={#MyAppURL}
|
||||||
|
AppUpdatesURL={#MyAppURL}
|
||||||
|
DefaultDirName={autopf}\{#MyAppName}
|
||||||
|
DisableProgramGroupPage=yes
|
||||||
|
;LicenseFile=..\LICENSE.md
|
||||||
|
; Remove the following line to run in administrative install mode (install for all users.)
|
||||||
|
;PrivilegesRequired=lowest
|
||||||
|
;PrivilegesRequiredOverridesAllowed=dialog
|
||||||
|
OutputDir=..
|
||||||
|
OutputBaseFilename=WezTerm-Setup
|
||||||
|
SetupIconFile=..\assets\windows\terminal.ico
|
||||||
|
Compression=lzma
|
||||||
|
SolidCompression=yes
|
||||||
|
WizardStyle=modern
|
||||||
|
; Build 1809 is required for pty support
|
||||||
|
MinVersion=10.0.17763
|
||||||
|
ChangesEnvironment=true
|
||||||
|
|
||||||
|
[Languages]
|
||||||
|
Name: "english"; MessagesFile: "compiler:Default.isl"
|
||||||
|
|
||||||
|
[Tasks]
|
||||||
|
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
|
||||||
|
|
||||||
|
[Files]
|
||||||
|
Source: "..\target\release\wezterm.exe"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
|
Source: "..\target\release\conpty.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
|
Source: "..\target\release\OpenConsole.exe"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
|
Source: "..\target\release\strip-ansi-escapes.exe"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
|
Source: "..\assets\colors\*"; DestDir: "{app}\colors"; Flags: ignoreversion
|
||||||
|
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
|
||||||
|
|
||||||
|
[Icons]
|
||||||
|
Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
|
||||||
|
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
|
||||||
|
|
||||||
|
[Run]
|
||||||
|
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
|
||||||
|
|
||||||
|
[Code]
|
||||||
|
{ https://stackoverflow.com/a/46609047/149111 }
|
||||||
|
const EnvironmentKey = 'SYSTEM\CurrentControlSet\Control\Session Manager\Environment';
|
||||||
|
|
||||||
|
procedure EnvAddPath(instlPath: string);
|
||||||
|
var
|
||||||
|
Paths: string;
|
||||||
|
begin
|
||||||
|
{ Retrieve current path (use empty string if entry not exists) }
|
||||||
|
if not RegQueryStringValue(HKEY_LOCAL_MACHINE, EnvironmentKey, 'Path', Paths) then
|
||||||
|
Paths := '';
|
||||||
|
|
||||||
|
if Paths = '' then
|
||||||
|
Paths := instlPath + ';'
|
||||||
|
else
|
||||||
|
begin
|
||||||
|
{ Skip if string already found in path }
|
||||||
|
if Pos(';' + Uppercase(instlPath) + ';', ';' + Uppercase(Paths) + ';') > 0 then exit;
|
||||||
|
if Pos(';' + Uppercase(instlPath) + '\;', ';' + Uppercase(Paths) + ';') > 0 then exit;
|
||||||
|
|
||||||
|
{ Append App Install Path to the end of the path variable }
|
||||||
|
if Paths[length(Paths)] <> ';' then
|
||||||
|
Paths := Paths + ';';
|
||||||
|
|
||||||
|
Paths := Paths + instlPath + ';';
|
||||||
|
end;
|
||||||
|
|
||||||
|
{ Overwrite (or create if missing) path environment variable }
|
||||||
|
if RegWriteStringValue(HKEY_LOCAL_MACHINE, EnvironmentKey, 'Path', Paths)
|
||||||
|
then Log(Format('The [%s] added to PATH: [%s]', [instlPath, Paths]))
|
||||||
|
else Log(Format('Error while adding the [%s] to PATH: [%s]', [instlPath, Paths]));
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure EnvRemovePath(instlPath: string);
|
||||||
|
var
|
||||||
|
Paths: string;
|
||||||
|
P, Offset, DelimLen: Integer;
|
||||||
|
begin
|
||||||
|
{ Skip if registry entry not exists }
|
||||||
|
if not RegQueryStringValue(HKEY_LOCAL_MACHINE, EnvironmentKey, 'Path', Paths) then
|
||||||
|
exit;
|
||||||
|
|
||||||
|
{ Skip if string not found in path }
|
||||||
|
DelimLen := 1; { Length(';') }
|
||||||
|
P := Pos(';' + Uppercase(instlPath) + ';', ';' + Uppercase(Paths) + ';');
|
||||||
|
if P = 0 then
|
||||||
|
begin
|
||||||
|
{ perhaps instlPath lives in Paths, but terminated by '\;' }
|
||||||
|
DelimLen := 2; { Length('\;') }
|
||||||
|
P := Pos(';' + Uppercase(instlPath) + '\;', ';' + Uppercase(Paths) + ';');
|
||||||
|
if P = 0 then exit;
|
||||||
|
end;
|
||||||
|
|
||||||
|
{ Decide where to start string subset in Delete() operation. }
|
||||||
|
if P = 1 then
|
||||||
|
Offset := 0
|
||||||
|
else
|
||||||
|
Offset := 1;
|
||||||
|
{ Update path variable }
|
||||||
|
Delete(Paths, P - Offset, Length(instlPath) + DelimLen);
|
||||||
|
|
||||||
|
{ Overwrite path environment variable }
|
||||||
|
if RegWriteStringValue(HKEY_LOCAL_MACHINE, EnvironmentKey, 'Path', Paths)
|
||||||
|
then Log(Format('The [%s] removed from PATH: [%s]', [instlPath, Paths]))
|
||||||
|
else Log(Format('Error while removing the [%s] from PATH: [%s]', [instlPath, Paths]));
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure CurStepChanged(CurStep: TSetupStep);
|
||||||
|
begin
|
||||||
|
if CurStep = ssPostInstall then
|
||||||
|
EnvAddPath(ExpandConstant('{app}'));
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep);
|
||||||
|
begin
|
||||||
|
if CurUninstallStep = usPostUninstall then
|
||||||
|
EnvRemovePath(ExpandConstant('{app}'));
|
||||||
|
end;
|
Loading…
Reference in New Issue
Block a user