From 74515d91d02fdf541ec19015fae7bb08984a206e Mon Sep 17 00:00:00 2001 From: Alan Somers Date: Sun, 26 May 2019 16:50:30 -0600 Subject: Remove deploy steps from Travis configuration. They've never been used, anyway. --- ci/before_deploy.ps1 | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 ci/before_deploy.ps1 (limited to 'ci/before_deploy.ps1') 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 -- cgit v1.2.3