mirror of
https://github.com/wez/wezterm.git
synced 2024-12-24 22:01:47 +03:00
maybe package up windows
This commit is contained in:
parent
00442cd6c8
commit
0d4a6d9a6d
@ -22,7 +22,7 @@ before_script:
|
|||||||
- rustup component add rustfmt-preview
|
- rustup component add rustfmt-preview
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- ./ci/travis-run.sh
|
- bash ./ci/travis-run.sh
|
||||||
|
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
@ -46,7 +46,7 @@ addons:
|
|||||||
- ragel
|
- ragel
|
||||||
|
|
||||||
before_deploy:
|
before_deploy:
|
||||||
- ci/deploy.sh
|
- bash ci/deploy.sh
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
provider: releases
|
provider: releases
|
||||||
|
@ -12,6 +12,12 @@ case $OSTYPE in
|
|||||||
darwin*)
|
darwin*)
|
||||||
(cd $HOME/Applications && zip -r $HERE/WezTerm-macOS-$TRAVIS_TAG.zip WezTerm.app)
|
(cd $HOME/Applications && zip -r $HERE/WezTerm-macOS-$TRAVIS_TAG.zip WezTerm.app)
|
||||||
;;
|
;;
|
||||||
|
msys)
|
||||||
|
zipdir=WezTerm-windows-$TRAVIS_TAG
|
||||||
|
mkdir zipdir
|
||||||
|
cp target/release/wezterm.exe target/release/wezterm.pdb $zipdir
|
||||||
|
7z a -tzip $zipdir.zip $zipdir
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
Loading…
Reference in New Issue
Block a user