mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
20 lines
654 B
YAML
20 lines
654 B
YAML
install:
|
|
# download shared script files
|
|
- ps: >-
|
|
if ( !(Test-Path -Path ./shared -PathType Container) ) {
|
|
$uri = 'https://ci.appveyor.com/api/projects/MSP-Greg/av-gem-build-test/artifacts/shared.7z'
|
|
$7z = 'C:\Program Files\7-Zip\7z.exe'
|
|
$fn = "$env:TEMP\shared.7z"
|
|
(New-Object System.Net.WebClient).DownloadFile($uri, $fn)
|
|
&$7z x $fn -owin_gem_test 1> $null
|
|
Remove-Item -LiteralPath $fn -Force
|
|
Write-Host "Downloaded shared files" -ForegroundColor Yellow
|
|
}
|
|
|
|
build_script:
|
|
- ps: .\win_gem_test\puma.ps1 $env:gem_bits
|
|
|
|
environment:
|
|
matrix:
|
|
- gem_bits: 64
|
|
- gem_bits: 32
|