2016-09-01 15:01:16 +02:00
|
|
|
platform: x64
|
|
|
|
|
|
|
|
environment:
|
|
|
|
matrix:
|
2017-12-06 11:21:04 +01:00
|
|
|
- compiler: msvc
|
2020-03-14 14:04:36 +01:00
|
|
|
generator: Visual Studio 14
|
|
|
|
vcvarsallpath: C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat
|
|
|
|
arch: amd64
|
2019-06-01 05:20:43 +02:00
|
|
|
|
|
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
2020-03-14 14:04:36 +01:00
|
|
|
compiler: msvc
|
2019-06-01 05:20:43 +02:00
|
|
|
generator: Visual Studio 15
|
2020-03-14 14:04:36 +01:00
|
|
|
vcvarsallpath: C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat
|
|
|
|
arch: x86
|
2019-06-01 05:20:43 +02:00
|
|
|
|
|
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
|
2020-03-14 14:04:36 +01:00
|
|
|
compiler: msvc
|
2019-06-01 05:20:43 +02:00
|
|
|
generator: Visual Studio 16
|
2020-03-14 14:04:36 +01:00
|
|
|
vcvarsallpath: C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat
|
|
|
|
arch: amd64
|
2019-05-28 23:25:31 +02:00
|
|
|
|
2016-09-01 22:51:48 +02:00
|
|
|
- compiler: msys2
|
2018-03-19 09:49:42 +01:00
|
|
|
MINGW_PREFIX: /mingw64
|
2016-09-01 22:51:48 +02:00
|
|
|
MINGW_CHOST: x86_64-w64-mingw32
|
|
|
|
MSYS2_ARCH: x86_64
|
2020-04-20 14:10:25 +02:00
|
|
|
MSYSTEM: MINGW64
|
2019-06-01 05:20:43 +02:00
|
|
|
|
2016-09-01 22:51:48 +02:00
|
|
|
- compiler: msys2
|
2018-03-19 09:49:42 +01:00
|
|
|
MINGW_PREFIX: /mingw32
|
2016-09-01 22:51:48 +02:00
|
|
|
MINGW_CHOST: i686-w64-mingw32
|
|
|
|
MSYS2_ARCH: i686
|
2020-04-20 14:10:25 +02:00
|
|
|
MSYSTEM: MINGW32
|
2016-09-01 22:51:48 +02:00
|
|
|
|
2018-10-20 00:18:36 +02:00
|
|
|
|
2016-09-01 15:01:16 +02:00
|
|
|
install:
|
2020-04-20 14:10:25 +02:00
|
|
|
- 'if "%compiler%"=="msys2" C:\msys64\usr\bin\bash -lc "pacman --noconfirm --force -S --needed mingw-w64-$MSYS2_ARCH-{gcc,freetype,cairo,icu,gettext,gobject-introspection,gcc,gcc-libs,glib2,graphite2,pkg-config,python3,python3-pip,ragel,meson,ninja}"'
|
|
|
|
- 'if "%compiler%"=="msys2" C:\msys64\usr\bin\bash -lc "pip install fonttools"'
|
2016-09-01 15:01:16 +02:00
|
|
|
|
2016-10-21 10:18:58 +02:00
|
|
|
build_script:
|
2020-03-14 14:04:36 +01:00
|
|
|
- set "PYTHON_ROOT=C:\python37-x64"
|
|
|
|
- set "PATH=%PYTHON_ROOT%;%PYTHON_ROOT%\Scripts;%PATH%"
|
|
|
|
- pip install --upgrade meson
|
2020-04-20 14:10:25 +02:00
|
|
|
- pip install fonttools
|
2020-03-14 14:04:36 +01:00
|
|
|
- 'if "%compiler%"=="msvc" "%vcvarsallpath%" %arch% && meson setup build --buildtype=release -Dglib=enabled -Dfreetype=enabled -Dgdi=enabled -Ddirectwrite=enabled && meson test --print-errorlogs --suite=harfbuzz -Cbuild'
|
2019-05-28 23:25:31 +02:00
|
|
|
|
2018-06-11 01:17:43 +02:00
|
|
|
- 'if "%compiler%"=="msys2" C:\msys64\usr\bin\bash -lc "curl https://raw.githubusercontent.com/mirror/mingw-w64/023eb04c396d4e8d8fcf604cfababc53dae13398/mingw-w64-headers/include/dwrite_1.h > %MINGW_PREFIX%/%MINGW_CHOST%/include/dwrite_1.h"'
|
2020-04-20 14:10:25 +02:00
|
|
|
- 'if "%compiler%"=="msys2" C:\msys64\usr\bin\bash -lc "cd $APPVEYOR_BUILD_FOLDER; meson build --wrap-mode=nofallback -Dfreetype=enabled -Dglib=enabled -Dcairo=enabled -Dgobject=enabled -Dgdi=enabled -Ddirectwrite=enabled -Dgraphite=enabled && meson test -Cbuild --print-errorlogs"'
|
2016-09-01 15:01:16 +02:00
|
|
|
|
2017-12-06 11:21:04 +01:00
|
|
|
cache:
|
|
|
|
- c:\tools\vcpkg\installed\
|
|
|
|
|
2018-02-14 22:45:39 +01:00
|
|
|
notifications:
|
|
|
|
- provider: Email
|
|
|
|
to:
|
|
|
|
- harfbuzz-bots-chatter@googlegroups.com
|
2018-02-19 01:10:15 +01:00
|
|
|
on_build_success: false
|
|
|
|
on_build_failure: true
|
|
|
|
on_build_status_changed: true
|
2018-02-14 22:45:39 +01:00
|
|
|
|
2018-10-24 09:43:10 +02:00
|
|
|
# Do not build feature branch with open Pull Requests
|
|
|
|
skip_branch_with_pr: true
|
|
|
|
|
2016-09-01 15:01:16 +02:00
|
|
|
# disable automatic tests
|
|
|
|
test: off
|