Skip to content

Commit

Permalink
Merge branch 'remove-cli-compile'
Browse files Browse the repository at this point in the history
  • Loading branch information
mikakoi committed Aug 6, 2018
2 parents e949dd2 + d9e1cf9 commit 6b2540c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Expand Up @@ -14,12 +14,10 @@ install:
script:
- echo "@TODO - Running tests..."
- pyinstaller --distpath dist/$TRAVIS_OS_NAME gui.spec
- pyinstaller --distpath dist/$TRAVIS_OS_NAME cli.spec
before_deploy:
- git config --local user.name "Travis"
- git config --local user.email "travis@travis-ci.org"
- git tag "$(date +'%Y%m%d%H%M%S')-$(git log --format=%h -1)"
- tar -czvf dist/DEXBot-cli-$TRAVIS_OS_NAME-$TRAVIS_TAG.tar.gz dist/$TRAVIS_OS_NAME/DEXBot-cli
- tar -czvf dist/DEXBot-gui-$TRAVIS_OS_NAME-$TRAVIS_TAG.tar.gz dist/$TRAVIS_OS_NAME/DEXBot-gui
deploy:
- provider: releases
Expand Down
10 changes: 3 additions & 7 deletions appveyor.yml
Expand Up @@ -8,7 +8,7 @@ environment:
- PYTHON: "C:\\Python35-x64"

#---------------------------------#
# build #
# Build #
#---------------------------------#

build: off
Expand All @@ -24,22 +24,18 @@ install:

after_test:
- make package
- '7z a DEXBot-cli-win64.zip %APPVEYOR_BUILD_FOLDER%\dist\DEXBot-cli.exe'
- '7z a DEXBot-gui-win64.zip %APPVEYOR_BUILD_FOLDER%\dist\DEXBot-gui.exe'

# @TODO: Run tests..
test_script:
- "echo tests..."

artifacts:
- path: DEXBot-cli-win64.zip
name: DEXBot-cli-win64.zip

- path: DEXBot-gui-win64.zip
name: DEXBot-gui-win64.zip

#---------------------------------#
# deployment #
# Deployment #
#---------------------------------#

shallow_clone: false
Expand All @@ -57,7 +53,7 @@ deploy:
appveyor_repo_tag: true # deploy on tag push only

#---------------------------------#
# notifications #
# Notifications #
#---------------------------------#

notifications:
Expand Down
2 changes: 1 addition & 1 deletion dexbot/__init__.py
@@ -1,4 +1,4 @@
APP_NAME = 'dexbot'
VERSION = '0.5.9'
VERSION = '0.5.10'
AUTHOR = 'Codaone Oy'
__version__ = VERSION

0 comments on commit 6b2540c

Please sign in to comment.