summaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2019-07-24 10:06:28 -0400
committerDan Davison <dandavison7@gmail.com>2019-07-24 12:08:41 -0400
commit4738e0dba8bcbee716ed71a2a39f3dec36557bab (patch)
tree1c20109a591274facba1d5d26e1638f327f635b7 /ci
parent9ee1587517399fd7d3d5d7ab1c54c11c2d243998 (diff)
Use Appveyor instead of Travis for Windows build
Diffstat (limited to 'ci')
-rw-r--r--ci/before_deploy.ps125
1 files changed, 25 insertions, 0 deletions
diff --git a/ci/before_deploy.ps1 b/ci/before_deploy.ps1
new file mode 100644
index 00000000..918b1d93
--- /dev/null
+++ b/ci/before_deploy.ps1
@@ -0,0 +1,25 @@
+# This script takes care of packaging the build artifacts that will go in the
+# release zipfile
+
+$SRC_DIR = $PWD.Path
+$STAGE = [System.Guid]::NewGuid().ToString()
+
+Set-Location $ENV:Temp
+New-Item -Type Directory -Name $STAGE
+Set-Location $STAGE
+
+$ZIP = "$SRC_DIR\$($Env:CRATE_NAME)-$($Env:APPVEYOR_REPO_TAG_NAME)-$($Env:TARGET).zip"
+
+Copy-Item "$SRC_DIR\target\release\delta.exe" '.\'
+
+# readme and license
+Copy-Item $SRC_DIR\README.md '.\'
+Copy-Item $SRC_DIR\LICENSE '.\'
+
+7z a "$ZIP" *
+
+Push-AppveyorArtifact "$ZIP"
+
+Set-Location ..
+Remove-Item $STAGE -Force -Recurse
+Set-Location $SRC_DIR