You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.6 KiB
YAML
70 lines
2.6 KiB
YAML
# Configuration rescued from 'old-master' branch.
|
|
# Only one Visual Studio (latest one), and all possible configurations
|
|
image: Visual Studio 2019
|
|
|
|
configuration:
|
|
- Debug
|
|
- Release
|
|
|
|
platform:
|
|
- x86
|
|
- x64
|
|
|
|
environment:
|
|
VCVARS: C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat
|
|
|
|
PYTHON: "C:\\Python39-x64"
|
|
|
|
matrix:
|
|
- SHARED: ON
|
|
- SHARED: OFF
|
|
|
|
shallow_clone: true
|
|
|
|
install:
|
|
- set PATH=%PATH%;%PYTHON%/Scripts/
|
|
- echo %APPVEYOR_BUILD_FOLDER%
|
|
- if not exist deps mkdir deps
|
|
- cd deps
|
|
- if not exist ninja appveyor DownloadFile https://github.com/ninja-build/ninja/releases/download/v1.10.2/ninja-win.zip -FileName ninja.zip
|
|
- if not exist ninja 7z x ninja.zip -o%APPVEYOR_BUILD_FOLDER%\deps\ninja > nul
|
|
- set PATH=%APPVEYOR_BUILD_FOLDER%\deps\ninja;%PATH%
|
|
- ninja --version
|
|
- python -m pip install --upgrade pip
|
|
- pip3.exe install conan==1.35.2
|
|
- pip3.exe install lxml
|
|
- cd %APPVEYOR_BUILD_FOLDER%
|
|
|
|
before_build:
|
|
- cmd: conan remote list
|
|
- cmd: conan config set storage.path=c:\Users\appveyor\conanCache
|
|
- cmd: conan profile new --detect default
|
|
- cmd: conan profile update settings.compiler.version=16 default
|
|
- cmd: if "%platform%"=="x64" (set ARCHITECTURE=x86_64) else (set ARCHITECTURE=x86)
|
|
- cmd: if "%CONFIGURATION%"=="Debug" (set RUNTIME=MDd) else (set RUNTIME=MD)
|
|
- cmd: conan profile update settings.arch=%ARCHITECTURE% default
|
|
- cmd: conan profile update settings.arch_build=%ARCHITECTURE% default
|
|
- cmd: conan profile update settings.build_type=%CONFIGURATION% default
|
|
- cmd: conan profile update settings.compiler.runtime=%RUNTIME% default
|
|
- cmd: cat c:\Users\appveyor\.conan\conan.conf
|
|
- cmd: cat c:\Users\appveyor\.conan\profiles\default
|
|
|
|
build_script:
|
|
- cmd: md build
|
|
- cmd: cd build
|
|
- cmd: if "%platform%"=="x64" (set VC_ARCH=x86_amd64) else (set VC_ARCH=x86)
|
|
- cmd: call "%VCVARS%" %VC_ARCH%
|
|
- cmd: conan install .. --build missing -o webready=True
|
|
- cmd: cmake -GNinja -DBUILD_SHARED_LIBS=%SHARED% -DEXIV2_TEAM_WARNINGS_AS_ERRORS=ON -DCMAKE_BUILD_TYPE=%CONFIGURATION% -DEXIV2_ENABLE_NLS=OFF -DEXIV2_ENABLE_PNG=ON -DEXIV2_ENABLE_WEBREADY=ON -DEXIV2_ENABLE_CURL=ON -DEXIV2_BUILD_UNIT_TESTS=ON -DEXIV2_ENABLE_WIN_UNICODE=OFF -DEXIV2_ENABLE_BMFF=ON -DCMAKE_INSTALL_PREFIX=install ..
|
|
- cmd: ninja
|
|
- cmd: ninja install
|
|
- cmd: cd bin
|
|
- cmd: unit_tests.exe
|
|
- cmd: cd ../../tests/
|
|
- cmd: set EXIV2_EXT=.exe
|
|
- cmd: c:\Python39-x64\python.exe runner.py -v
|
|
|
|
cache:
|
|
- deps # Ninja installation
|
|
#- c:\Users\appveyor\conanCache # Conan cache
|