Add VSTS index scripts for deployment

This commit is contained in:
Jack Andersen 2017-12-27 17:17:05 -10:00
parent ee92f70d09
commit 774f5ba8a7
3 changed files with 15 additions and 0 deletions

5
.vsts-index-linux.bash Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash
echo urde-$1-linux-$2-sse3.tar.xz > $3
echo urde-$1-linux-$2-sse41.tar.xz >> $3
echo urde-$1-linux-$2-avx.tar.xz >> $3
echo urde-$1-linux-$2-avx2.tar.xz >> $3

5
.vsts-index-macos.bash Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash
echo urde-$1-macos-$2-sse3.app.tar.xz > $3
echo urde-$1-macos-$2-sse41.app.tar.xz >> $3
echo urde-$1-macos-$2-avx.app.tar.xz >> $3
echo urde-$1-macos-$2-avx2.app.tar.xz >> $3

5
.vsts-index-win32.bash Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash
echo urde-$1-win32-$2-sse2.exe > $3
echo urde-$1-win32-$2-sse41.exe >> $3
echo urde-$1-win32-$2-avx.exe >> $3
echo urde-$1-win32-$2-avx2.exe >> $3