This repository has been archived on 2023-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
pgls/appveyor.yml

28 lines
590 B
YAML
Raw Permalink Normal View History

image: Visual Studio 2019
2018-02-07 00:44:36 +03:00
init:
- set PATH=C:/Ruby%ruby_version%/bin;c:/Program Files/Git/cmd;c:/Windows/system32;C:/Windows/System32/WindowsPowerShell/v1.0
- set RUBYOPT=--verbose
install:
- ver
- ruby --version
- gem --version
- gem install bundler --no-doc --conservative
2018-02-07 00:44:36 +03:00
- bundle install
build_script:
- set PATH=C:/Program Files/PostgreSQL/%PGVER%/bin;%PATH%
- md temp
- icacls temp /grant Everyone:(OI)(CI)F /T
test_script:
- bundle exec rake test
environment:
matrix:
- ruby_version: "27-x64"
PGVER: 13
- ruby_version: "24"
2018-02-07 00:44:36 +03:00
PGVER: 10