Skip to content

Commit

Permalink
rely on docker builds
Browse files Browse the repository at this point in the history
  • Loading branch information
se committed Jan 22, 2018
1 parent c7ee7d6 commit 1e0d95d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions make.bat
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ IF "%1"=="test" (
) ELSE IF "%1"=="tidy" (
CALL :CLEAN
CALL :TIDY
) ELSE IF "%1"=="installer" (
CALL :INSTALLER
) ELSE IF "%1"=="help" (
CALL :HELP
) ELSE (
Expand All @@ -27,15 +29,18 @@ GOTO :eof


:HELP
echo choose a target from "test", "dist", "clean", "tidy", "help"
echo choose a target from "test", "clean", "tidy", "help", "installer"
GOTO :eof

:TEST
venv\Scripts\python.exe tests\test_panache.py
GOTO :eof

:DIST
venv\Scripts\pyinstaller --onefile src\panache.py --distpath=bin
echo make binaries at linux machine with docker
GOTO :eof

:INSTALLER
CALL make-windows-installer.bat
GOTO :eof

Expand Down

0 comments on commit 1e0d95d

Please sign in to comment.