Skip to content

Commit

Permalink
Made core build use release configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
TravisEz13 committed Aug 12, 2016
1 parent 5e310a7 commit 3a02842
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ build_script:
$result.Warnings
throw "Tags must be CI, Feature, Scenario, or Slow"
}
Start-PSBuild -CrossGen
Start-PSBuild -CrossGen -Configuration Release
Start-PSBuild -FullCLR
test_script:
Expand Down Expand Up @@ -82,7 +82,9 @@ on_finish:
$zipFilePath = Join-Path $pwd "$name.zip"
$zipFileFullPath = Join-Path $pwd "$name.FullCLR.zip"
Add-Type -assemblyname System.IO.Compression.FileSystem
Write-Verbose "Zipping ${env:CoreOutput} into $zipFilePath" -verbose
[System.IO.Compression.ZipFile]::CreateFromDirectory($env:CoreOutput, $zipFilePath)
Write-Verbose "Zipping ${env:FullOutput} into $zipFileFullPath" -verbose
[System.IO.Compression.ZipFile]::CreateFromDirectory($env:FullOutput, $zipFileFullPath)
$artifacts = New-Object System.Collections.ArrayList
Expand Down

0 comments on commit 3a02842

Please sign in to comment.