forked from ohler55/oj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
45 lines (34 loc) · 816 Bytes
/
appveyor.yml
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
36
37
38
39
40
41
42
43
44
45
# https://www.appveyor.com/docs/lang/ruby/
version: 3.3.2-{build}-{branch}
image: Visual Studio 2015
cache:
- vendor/bundle
platform:
- x86
# environment:
# matrix:
# - RUBY_VERSION: 200
# - RUBY_VERSION: 193
environment:
APPVEYOR_RDP_PASSWORD: fixm3-wtf
PATH: c:\Ruby%RUBY_VERSION%\DevKit\mingw\bin;C:\Ruby%RUBY_VERSION%\bin;C:\Ruby%RUBY_VERSION%\DevKit\bin;C:\mingw-w64\x86_64-6.3.0-posix-seh-rt_v5-rev1;%PATH%
matrix:
- RUBY_VERSION: 23-x64
build: off
before_build:
- gem update --system
- ruby -v
- make -v
#- bundle -v
build_script:
- echo %PATH%
- cd C:\projects\oj\ext\oj
- ruby extconf.rb
- make
- cd C:\projects\oj\test
- ruby tests.rb
#- bundle config --local path vendor/bundle
#- bundle install
#- bundle exec rake
matrix:
fast_finish: true