summaryrefslogtreecommitdiff
path: root/ci/before_deploy.ps1
diff options
context:
space:
mode:
authorAlan Somers <asomers@gmail.com>2019-05-26 16:50:30 -0600
committerAlan Somers <asomers@gmail.com>2019-06-03 07:02:59 -0600
commit74515d91d02fdf541ec19015fae7bb08984a206e (patch)
tree58e8e71466a9f4d1f3e98eaa900400eb147470d6 /ci/before_deploy.ps1
parentdc334956e4d07e43581d7a2948fb5a0c4c8eab49 (diff)
downloadnix-74515d91d02fdf541ec19015fae7bb08984a206e.zip
Remove deploy steps from Travis configuration.
They've never been used, anyway.
Diffstat (limited to 'ci/before_deploy.ps1')
-rw-r--r--ci/before_deploy.ps123
1 files changed, 0 insertions, 23 deletions
diff --git a/ci/before_deploy.ps1 b/ci/before_deploy.ps1
deleted file mode 100644
index 191a30b8..00000000
--- a/ci/before_deploy.ps1
+++ /dev/null
@@ -1,23 +0,0 @@
-# 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"
-
-# TODO Update this to package the right artifacts
-Copy-Item "$SRC_DIR\target\$($Env:TARGET)\release\hello.exe" '.\'
-
-7z a "$ZIP" *
-
-Push-AppveyorArtifact "$ZIP"
-
-Remove-Item *.* -Force
-Set-Location ..
-Remove-Item $STAGE
-Set-Location $SRC_DIR