# Notes: # - Minimal appveyor.yml file is an empty file. All sections are optional. # - Indent each level of configuration with 2 spaces. Do not use tabs! # - All section names are case-sensitive. # - Section names should be unique on each level. #---------------------------------# # general configuration # #---------------------------------# # version format version: '{build}-{branch}' # branches to build branches: # whitelist only: - develop - release - default # Do not build on tags (GitHub and BitBucket) skip_tags: true #---------------------------------# # environment configuration # #---------------------------------# # clone directory clone_folder: c:\projects\valentina # set clone depth clone_depth: 1 # clone entire repository history if not defined # fetch repository as zip archive shallow_clone: false # default is "false" environment: ACCESS_TOKEN: secure: RUhnEHqaR8KhalOMWwZZOoO342Ja50QV4KpEWdm9g3pG+jG7i6aJqUmeKF1l5VN6dzksk1u+yN6pOLnU8oGcaVQ6v+1dpKK1oZvF0tyHhNE= matrix: - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 QT5: Qt\5.15\mingw81_32 QT_VERSION: Qt5_15 QMAKE_GENERATOR: "MinGW Makefiles" MINGW_PATH: C:\Qt\Tools\mingw810_32\bin PYTHON: "C:\\Python38-x64" PLATFORM: x86 DEPLOY: true - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 QT5: Qt\5.6\mingw49_32 QT_VERSION: Qt5_6 QMAKE_GENERATOR: "MinGW Makefiles" MINGW_PATH: C:\Qt\Tools\mingw492_32\bin PYTHON: "C:\\Python38-x64" PLATFORM: x86 DEPLOY: true - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 QT5: Qt\5.15\mingw81_64 QT_VERSION: Qt5_15 QMAKE_GENERATOR: "MinGW Makefiles" MINGW_PATH: C:\Qt\Tools\mingw810_64\bin PLATFORM: x64 DEPLOY: false - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 QT5: Qt\5.15\msvc2019_64 QMAKE_GENERATOR: "NMake Makefiles JOM" VSVER: 16 PLATFORM: x64 DEPLOY: false - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 QT5: Qt\5.6\msvc2015_64 QT_VERSION: Qt5_6 QMAKE_GENERATOR: "NMake Makefiles JOM" VSVER: 14 PLATFORM: x64 DEPLOY: false # scripts that are called at very beginning, before repo cloning init: # Uncomment if need access through RDP # - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) # Path before - path - set QTDIR=C:\%QT5% - set PATH=%QTDIR%\bin;%QTDIR%\include;C:\Tools\PsTools;C:\Program Files\Git\cmd;C:\Program Files\Git\usr\bin;C:\Program Files\Git LFS;C:\Tools\GitVersion;C:\Windows\system32;C:\Windows;C:\Windows\System32\WindowsPowerShell\v1.0\ - if NOT "%QMAKE_GENERATOR%" == "MinGW Makefiles" echo "Using Visual Studio %VSVER%.0" - if "%QMAKE_GENERATOR%" == "MinGW Makefiles" echo "Using MinGW" # Set VC variables for the platform - IF "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2019" IF "%QMAKE_GENERATOR%"=="NMake Makefiles JOM" IF "%PLATFORM%"=="x86" call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars32.bat" - if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2019" IF "%QMAKE_GENERATOR%"=="NMake Makefiles JOM" IF "%PLATFORM%"=="x64" call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat" - IF "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2017" IF "%QMAKE_GENERATOR%"=="NMake Makefiles JOM" IF "%PLATFORM%"=="x86" call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars32.bat" - if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2017" if "%QMAKE_GENERATOR%"=="NMake Makefiles JOM" if "%PLATFORM%"=="x64" call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat" - if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2015" if "%QMAKE_GENERATOR%"=="NMake Makefiles JOM" if "%PLATFORM%"=="x86" call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86 - if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2015" if "%QMAKE_GENERATOR%"=="NMake Makefiles JOM" if "%PLATFORM%"=="x64" call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 - if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2015" if "%QMAKE_GENERATOR%"=="NMake Makefiles JOM" if "%PLATFORM%"=="x64" call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86_amd64 - if "%QMAKE_GENERATOR%" == "MinGW Makefiles" set PATH=%MINGW_PATH%;%PATH% - if "%QMAKE_GENERATOR%" == "NMake Makefiles JOM" set PATH=C:\Qt\Tools\QtCreator\bin;%PATH% - if "%DEPLOY%" == "true" set PATH=%PYTHON%;%PYTHON%\Scripts;%PATH% # Set paths to libraries - set PATH=C:\projects\valentina\build\src\libs\vpropertyexplorer\bin;C:\projects\valentina\build\src\libs\qmuparser\bin;%PATH% # Path after - path # Check that we have the expected version for Python - if "%DEPLOY%" == "true" (python --version) # Install the build dependencies of the project. - if "%DEPLOY%" == "true" (python -m pip install --upgrade pip) - if "%DEPLOY%" == "true" (python -m pip install dropbox) # Trick qmake to not work through MSYS - del /F "C:\Program Files\Git\usr\bin\sh.exe" - del /F "C:\Program Files\Git\bin\sh.exe" - qmake -v #---------------------------------# # build configuration # #---------------------------------# before_build: - cd c:\projects\valentina - md build # to run your custom scripts instead of automatic MSBuild build_script: - cd build - if "%DEPLOY%" == "true" (qmake ..\Valentina.pro -r CONFIG+=no_ccache CONFIG+=checkWarnings CONFIG+=noDebugSymbols CONFIG+=noWindowsInstaller) else (qmake ..\Valentina.pro -r CONFIG+=noDebugSymbols CONFIG+=no_ccache CONFIG+=checkWarnings) - if not "%QMAKE_GENERATOR%" == "MinGW Makefiles" (nmake -s) else (mingw32-make -j%NUMBER_OF_PROCESSORS%) # to run your custom scripts instead of automatic tests test_script: - if "%QMAKE_GENERATOR%" == "MinGW Makefiles" (mingw32-make -s check TESTARGS="-silent") # to disable automatic tests #test: off matrix: fast_finish: false #---------------------------------# # notifications # #---------------------------------# notifications: # Email - provider: Email to: - dismine@gmail.com on_build_success: false on_build_failure: true on_build_status_changed: true #---------------------------------# # deployment # #---------------------------------# # prepare to deploy after_test: - if "%DEPLOY%" == "true" (mingw32-make install) # to run your custom scripts instead of provider deployments deploy_script: - ps: ../scripts/appveyor-deploy.ps1