From 70215d4a748e3fffeee82f62c16c671074dc127f Mon Sep 17 00:00:00 2001 From: Dan Davison Date: Wed, 24 Jul 2019 12:09:13 -0400 Subject: Revert "Use Appveyor instead of Travis for Windows build" This reverts commit 4738e0dba8bcbee716ed71a2a39f3dec36557bab. --- ci/before_deploy.ps1 | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 ci/before_deploy.ps1 (limited to 'ci') diff --git a/ci/before_deploy.ps1 b/ci/before_deploy.ps1 deleted file mode 100644 index 918b1d93..00000000 --- a/ci/before_deploy.ps1 +++ /dev/null @@ -1,25 +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" - -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 -- cgit v1.2.3