Try adding vcpkg bin/ to the PATH
This commit is contained in:
parent
5d693134d7
commit
a5cb9887b0
10
appveyor.yml
10
appveyor.yml
|
@ -4,17 +4,19 @@ image: Visual Studio 2017
|
||||||
version: "{build}"
|
version: "{build}"
|
||||||
|
|
||||||
install:
|
install:
|
||||||
# Binary taken from http://w858rkbfg.homepage.t-online.de/index.php/software/ragel-windows/,
|
- if "%platform%"=="Win32" set VCPKG_ARCH=x86-windows
|
||||||
# rehosted on AWS so it doesn't randomly vanish.
|
- if "%platform%"=="x64" set VCPKG_ARCH=x64-windows
|
||||||
- vcpkg install ragel
|
- vcpkg install ragel:%VCPKG_ARCH%
|
||||||
|
- SET PATH=C:\tools\vcpkg\installed\%VCPKG_ARCH%\bin;%PATH%
|
||||||
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
|
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
|
||||||
- bundle install --retry 3
|
- bundle install --retry 3
|
||||||
|
|
||||||
cache: C:\tools\vcpkg\installed\
|
cache: C:\tools\vcpkg\installed
|
||||||
|
|
||||||
build: off
|
build: off
|
||||||
|
|
||||||
before_test:
|
before_test:
|
||||||
|
- ragel --version
|
||||||
- ruby --version
|
- ruby --version
|
||||||
- gem --version
|
- gem --version
|
||||||
- bundle --version
|
- bundle --version
|
||||||
|
|
Loading…
Reference in New Issue