This repository was archived by the owner on May 16, 2019. It is now read-only.
File tree 5 files changed +24
-13
lines changed
5 files changed +24
-13
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,23 @@ after_success:
18
18
before_deploy :
19
19
- export RELEASE_PKG_FILE=$(ls dist/openbazaard*)
20
20
deploy :
21
- provider : releases
22
- api_key : " $GITHUB_TOKEN"
23
- file_glob : true
24
- file :
25
- - " ${RELEASE_PKG_FILE}"
26
- - " ob.cfg"
27
- skip_cleanup : true
28
- on :
29
- all_branches : true
21
+ - provider : releases
22
+ api_key : " $GITHUB_TOKEN"
23
+ file_glob : true
24
+ file :
25
+ - dist/openbazaard-linux32
26
+ - dist/openbazaard-linux64
27
+ - dist/openbazaard.exe
28
+ skip_cleanup : true
29
+ on :
30
+ all_branches : true
31
+ condition : $TRAVIS_OS_NAME = linux
32
+ - provider : releases
33
+ api_key : " $GITHUB_TOKEN"
34
+ file_glob : true
35
+ file :
36
+ - dist/openbazaard-osx*
37
+ skip_cleanup : true
38
+ on :
39
+ all_branches : true
40
+ condition : $TRAVIS_OS_NAME = osx
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ exe = EXE(pyz,
30
30
a .binaries ,
31
31
a .zipfiles ,
32
32
a .datas ,
33
- name = 'openbazaard' ,
33
+ name = 'openbazaard-windows32 ' ,
34
34
icon = 'windows\\ icon.ico' ,
35
35
debug = True ,
36
36
strip = False ,
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ exe = EXE(pyz,
30
30
a .binaries ,
31
31
a .zipfiles ,
32
32
a .datas ,
33
- name = 'openbazaard' ,
33
+ name = 'openbazaard-windows64 ' ,
34
34
icon = 'windows\\ icon.ico' ,
35
35
debug = False ,
36
36
strip = False ,
Original file line number Diff line number Diff line change @@ -74,6 +74,6 @@ wine c:/Python27/python -m pip install https://pypi.python.org/packages/7a/ec/47
74
74
wget -N https://github.com/pyinstaller/pyinstaller/releases/download/v3.1/PyInstaller-3.1.zip
75
75
unzip -o PyInstaller-3.1.zip
76
76
cd ../..
77
- wine C:/Python27/python.exe dist/windows32/PyInstaller-3.1/pyinstaller.py -F -n openbazaard.exe -i images/icon.ico .travis/openbazaard.win.spec --noconfirm --log-level=DEBUG
77
+ wine C:/Python27/python.exe dist/windows32/PyInstaller-3.1/pyinstaller.py -F -n openbazaard-windows32 .exe -i images/icon.ico .travis/openbazaard.win.spec --noconfirm --log-level=DEBUG
78
78
79
79
Original file line number Diff line number Diff line change @@ -68,5 +68,5 @@ wine cmd /c "copy c:\\Windows\\System32\\msvcm90.dll c:\\python27"
68
68
wget -N https://github.com/pyinstaller/pyinstaller/releases/download/v3.1/PyInstaller-3.1.zip
69
69
unzip -o PyInstaller-3.1.zip
70
70
cd ../..
71
- wine C:/Python27/python.exe dist/windows64/PyInstaller-3.1/pyinstaller.py -F -n openbazaard.exe -i images/icon.ico .travis/openbazaard.win64.spec --noconfirm
71
+ wine C:/Python27/python.exe dist/windows64/PyInstaller-3.1/pyinstaller.py -F -n openbazaard-windows64 .exe -i images/icon.ico .travis/openbazaard.win64.spec --noconfirm
72
72
You can’t perform that action at this time.
0 commit comments