-
Notifications
You must be signed in to change notification settings - Fork 99
/
appveyor.yml
41 lines (37 loc) · 1.06 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
# SPDX-FileCopyrightText: Bradley M. Bell <[email protected]>
# SPDX-FileContributor: 2003-22 Bradley M. Bell
# ----------------------------------------------------------------------------
#
# build platform, i.e. x86, x64, Any CPU. This setting is optional.
platform:
- x64
# branches to build on push
branches:
only:
- master
# msys2 environment
environment:
matrix:
- HOST_ARCH_ARG: --host=x86_64-w64-mingw32
ADD_PATH: /mingw64/bin
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
# scripts that run after cloning repository
install:
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S mingw-w64-x86_64-cmake"
#
# run custom scripts instead of automatic MSBuild
build_script:
- C:\msys64\usr\bin\bash -lc "
cd $APPVEYOR_BUILD_FOLDER;
export PATH=$PATH:$ADD_PATH;
bin/appveyor.sh make check install uninstall
"
#
notifications:
- provider: Email
to:
on_build_status_changed: true
on_build_failure: true
on_build_success: false