File: appveyor.yml

package info (click to toggle)
ruby-eventmachine 1.3~pre20220315-df4ab006-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,616 kB
  • sloc: ruby: 10,873; cpp: 6,140; java: 1,136; makefile: 12
file content (27 lines) | stat: -rw-r--r-- 719 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
image:
- Visual Studio 2019

build: off
deploy: off

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\eventmachine.ps1 $env:gem_bits

environment:
  matrix:
    - gem_bits: 64
    - gem_bits: 32