]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Deploy windows binary (#422)
authorCong <congusbongus@gmail.com>
Wed, 26 Sep 2018 19:23:16 +0000 (05:23 +1000)
committerŁukasz Langa <lukasz@langa.pl>
Wed, 26 Sep 2018 19:23:16 +0000 (20:23 +0100)
.appveyor.yml

index 0e5582b20c73a63c65b096ebe67cc078db447081..6dadfb317e28c5c2b4c9312dfb4f63949c575b82 100644 (file)
@@ -8,3 +8,19 @@ build: off
 test_script:
 - C:\Python36\python.exe tests/test_black.py
 - C:\Python36\python.exe -m mypy black.py blackd.py tests/test_black.py
+
+after_test:
+  - C:\Python36\python.exe -m pip install pyinstaller
+  - "%CMD_IN_ENV% C:\\Python36\\python.exe -m PyInstaller --clean -F --add-data blib2to3/;blib2to3 black.py"
+
+artifacts:
+  - path: dist/black.exe
+
+deploy:
+  provider: GitHub
+  description: ''
+  auth_token:
+    secure: caPP8BcGffPuTopDfdI4ZVKZkpD9l9UAcjO7rwm5/fFSMbsqh1v4S38nmMn4uSuD
+  on:
+    appveyor_repo_tag: true
+