-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.appveyor.yml
50 lines (47 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
42
43
44
45
46
47
48
49
50
---
environment:
matrix:
- CYG_ARCH: x86_64
CYG_ROOT: C:/cygwin64
install:
- set PATH=C:\cygwin64\bin;%PATH%
- '%CYG_ROOT%\setup-%CYG_ARCH%.exe -qnNdO -R %CYG_ROOT%
-l %CYG_ROOT%/var/cache/setup
-P autoconf
-P automake
-P bison
-P cmake
-P curl
-P gcc-core
-P gcc-g++
-P gettext
-P gettext-devel
-P git
-P intltool
-P libgmp-devel
-P libiconv
-P libncurses-devel
-P libreadline-devel
-P libtool
-P make
-P mingw-binutils
-P mingw-gcc-core
-P mingw-gcc-g++
-P mingw-pthreads
-P mingw-runtime
-P mingw-w32api
-P pkg-config
-P wget'
before_build:
- gcc -v
- g++ -v
build_script:
# https://help.appveyor.com/discussions/problems/5170-progresspreference-not-works-always-shown-preparing-modules-for-first-use-in-stderr
- ps: $ProgressPreference = "SilentlyContinue"
- bash -lc "
cd $APPVEYOR_BUILD_FOLDER ;
mkdir build ;
cd build ;
cmake .. ;
make ;
./src/cxmon ver"