-
Notifications
You must be signed in to change notification settings - Fork 8
/
appveyor.yml
30 lines (25 loc) · 1.03 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
version: 1.0.{build}
image: Visual Studio 2017
environment:
matrix:
- COMPILER: msys2
PLATFORM: x64
MSYS2_ARCH: x86_64
MSYS2_DIR: msys64
MSYSTEM: MINGW64
BIT: 64
build_script:
- cmd: >-
SET "PATH=C:\%MSYS2_DIR%\%MSYSTEM%\bin;C:\%MSYS2_DIR%\usr\bin;%PATH
bash -lc "pacman -Syu --noconfirm"
bash -lc "pacman -Sy --needed --noconfirm base-devel mpfr cmake mingw64/mingw-w64-x86_64-glib2 glib2-devel mingw64/mingw-w64-x86_64-cairo mingw64/mingw-w64-x86_64-gst-plugins-base mingw64/mingw-w64-x86_64-gst-plugins-good mingw64/mingw-w64-x86_64-gst-plugins-bad mingw64/mingw-w64-x86_64-gtk3 mingw64/mingw-w64-x86_64-pango mingw-w64-x86_64-lua mingw64/mingw-w64-x86_64-libsoup"
bash -lc "cd /c/projects/ginga && ./bootstrap && ./configure --disable-shared && make -j4"
notifications:
- provider: Email
to:
- alan@telemidia.puc-rio.br
- gflima@telemidia.puc-rio.br
- robertogerson@telemidia.puc-rio.br
on_build_success: false
on_build_failure: false
on_build_status_changed: true