diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-11 06:27:28 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-11 06:27:28 +0300 |
commit | b7a126438c6e080cce6fe490c979a3e65a62ed33 (patch) | |
tree | 9e4f0a4b4d2d9d56849f41ded932353cb2788849 /.appveyor/build.ps1 | |
parent | AppVeyor: don't preserve Set-PSDebug (diff) | |
download | windows-env-b7a126438c6e080cce6fe490c979a3e65a62ed33.tar.gz windows-env-b7a126438c6e080cce6fe490c979a3e65a62ed33.zip |
AppVeyor: ditch PowerShell
Diffstat (limited to '')
-rw-r--r-- | .appveyor/build.ps1 | 84 |
1 files changed, 0 insertions, 84 deletions
diff --git a/.appveyor/build.ps1 b/.appveyor/build.ps1 deleted file mode 100644 index 62e5082..0000000 --- a/.appveyor/build.ps1 +++ /dev/null @@ -1,84 +0,0 @@ -param( - [string] $Platform = $null -) - -$ErrorActionPreference = "Stop"; -Set-PSDebug -Strict - -function Invoke-Exe { - param( - [ScriptBlock] $Cmd, - [int[]] $AllowedExitCodes = @(0) - ) - - $backupErrorActionPreference = $script:ErrorActionPreference - $script:ErrorActionPreference = 'Continue' - - try { - & $Cmd - if ($AllowedExitCodes -notcontains $LastExitCode) { - throw "External command failed with exit code ${LastExitCode}: $Cmd" - } - } finally { - $script:ErrorActionPreference = $backupErrorActionPreference - } -} - -function Test-AppVeyor { - return Test-Path env:APPVEYOR -} - -function Set-AppVeyorDefaults { - $script:Platform = $env:PLATFORM -} - -function Get-StackUrl { - param( - [string] $Platform = $env:PLATFORM - ) - - if ($Platform -eq 'x86_64') { - return 'https://get.haskellstack.org/stable/windows-x86_64.zip' - } else { - return 'https://get.haskellstack.org/stable/windows-i386.zip' - } -} - -function Install-Stack { - param( - [Parameter(Mandatory=$true)] - [string] $Platform - ) - - Invoke-Exe { curl.exe --silent --show-error --output C:\stack.zip --location --insecure -- $(Get-StackUrl -Platform $Platform) } - Invoke-Exe { 7z.exe x -oC:\sr C:\stack.zip } - $env:STACK_ROOT = 'C:\sr' -} - -function Build-Project { - param( - [Parameter(Mandatory=$true)] - [string] $Platform - ) - - Invoke-Exe { C:\sr\stack.exe build --install-ghc --arch $Platform } -} - -function Build-ProjectAppVeyor { - if (Test-AppVeyor) { - Set-AppVeyorDefaults - $appveyor_cwd = pwd - } - - try { - Install-Stack -Platform $script:Platform - Build-Project -Platform $script:Platform - } finally { - if (Test-AppVeyor) { - cd $appveyor_cwd - Set-PSDebug -Off - } - } -} - -Build-ProjectAppVeyor |