From cc72b204b2bfcf720d6520783290c3fd30a01ea2 Mon Sep 17 00:00:00 2001 From: Mattes D Date: Sat, 28 Dec 2019 12:53:37 +0100 Subject: Output the binaries into a per-configuration Server subfolder. (#4440) Make links to the original Server subfolder's items from the per-configuration Server subfolder. --- Server/Install/PackWindowsExecutables.cmd | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Server/Install/PackWindowsExecutables.cmd (limited to 'Server/Install/PackWindowsExecutables.cmd') diff --git a/Server/Install/PackWindowsExecutables.cmd b/Server/Install/PackWindowsExecutables.cmd new file mode 100644 index 000000000..8993ab3ed --- /dev/null +++ b/Server/Install/PackWindowsExecutables.cmd @@ -0,0 +1,21 @@ +@echo off +:: This script is run in the Appveyor CI builds to pack up the artifacts +:: It is expected to be run with the Server folder as the current working dir +@echo on + +del Cuberite.zip +del PDBs.zip +del ManualAPI.zip +del AutoAPI.zip +rd /q /s Plugins\ManualApiDump +7z a -tzip -y Cuberite.zip -scsWIN -i@Install\WindowsExecutables.list -xr!*.git* +7z a -tzip -y PDBs.zip -scsWIN -i@Install/WindowsPDBs.list -xr!*.git* +git clone https://github.com/madmaxoft/ManualApiDump Plugins/ManualApiDump +echo load ManualApiDump 1>cmds.txt +echo manualapi 1>>cmds.txt +echo load APIDump 1>>cmds.txt +echo api 1>>cmds.txt +echo stop 1>>cmds.txt +Cuberite --port 32767 0