oga/appveyor.yml

44 lines
839 B
YAML
Raw Normal View History

2015-03-22 13:04:04 +00:00
---
2018-01-02 11:43:31 +00:00
image: Visual Studio 2017
2015-03-22 13:04:04 +00:00
version: "{build}"
install:
2018-01-02 12:06:06 +00:00
- if "%platform%"=="Win32" set VCPKG_ARCH=x86-windows
- if "%platform%"=="x64" set VCPKG_ARCH=x64-windows
- vcpkg install ragel:%VCPKG_ARCH%
- SET PATH=C:\tools\vcpkg\installed\%VCPKG_ARCH%\bin;%PATH%
2015-03-22 13:04:04 +00:00
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
2015-03-23 12:34:38 +00:00
- bundle install --retry 3
2015-03-22 13:04:04 +00:00
2018-01-02 12:06:06 +00:00
cache: C:\tools\vcpkg\installed
2018-01-02 11:43:31 +00:00
2015-03-22 13:04:04 +00:00
build: off
2017-11-02 11:21:02 +00:00
before_test:
2018-01-02 12:06:06 +00:00
- ragel --version
2017-11-02 11:21:02 +00:00
- ruby --version
- gem --version
- bundle --version
2015-03-22 13:04:04 +00:00
test_script:
- rake
environment:
matrix:
- ruby_version: "22"
- ruby_version: "22-x64"
2017-01-03 20:46:32 +00:00
- ruby_version: "23"
- ruby_version: "23-x64"
- ruby_version: "24"
- ruby_version: "24-x64"
2015-03-22 13:04:04 +00:00
skip_tags: true
notifications:
-
provider: Email
on_build_success: false
on_build_failure: false
on_build_status_changed: true