19 lines
345 B
YAML
19 lines
345 B
YAML
version: '{build}'
|
|
branches:
|
|
only:
|
|
- master
|
|
build_script:
|
|
- ps: >-
|
|
& "$env:APPVEYOR_BUILD_FOLDER\ci\appveyor.ps1"
|
|
if ($lastexitcode -ne 0){ exit $lastexitcode }
|
|
|
|
cache:
|
|
- work\git -> appveyor.yml
|
|
- work\install -> appveyor.yml
|
|
|
|
environment:
|
|
matrix:
|
|
#mingw
|
|
- COMPILER: MINGW
|
|
#msvc
|
|
#- COMPILER: MSVC |