File: appveyor.yml

package info (click to toggle)
ruby-sqlite3 2.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 680 kB
  • sloc: ruby: 4,827; ansic: 1,868; sh: 91; makefile: 7
file content (35 lines) | stat: -rw-r--r-- 561 bytes parent folder | download
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
28
29
30
31
32
33
34
35
---
image: Visual Studio 2019

branches:
  only:
    - master

skip_branch_with_pr: true

clone_depth: 1

cache:
  - vendor/bundle
  - ports/archives

install:
  - SET PATH=C:\ruby%ruby_version%\bin;%PATH%
  - ruby --version
  - gem --version
  - gem install bundler --conservative
  - bundler --version
  - bundle config --local path vendor/bundle
  - bundle install

build: off

test_script:
  - bundle exec rake -rdevkit compile test

environment:
  matrix:
    - ruby_version: "33"
    - ruby_version: "32"
    - ruby_version: "31"
    - ruby_version: "30"