forked from net-snmp/net-snmp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.appveyor.yml
More file actions
34 lines (28 loc) · 735 Bytes
/
.appveyor.yml
File metadata and controls
34 lines (28 loc) · 735 Bytes
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
image:
- Ubuntu
- Ubuntu1604
# - Ubuntu2004 - Disabled because apt-get fails.
- macos
- macos-mojave
- Visual Studio 2019
environment:
CYG_MIRROR: http://mirrors.kernel.org/sourceware/cygwin/
matrix:
- BUILD: MSVCDYNAMIC64
- BUILD: MSVCSTATIC64
- BUILD: INSTALLER
- BUILD: MinGW32
- BUILD: MSYS2
- BUILD: MinGW64
artifacts:
- path: installer
clone_depth: 5
install:
- cmd: 'ci\openssl.bat'
- sh: 'if [ $BUILD = MSVCDYNAMIC64 ]; then sudo ci/install.sh; fi'
build_script:
- cmd: 'ci\build.bat'
- sh: 'if [ $BUILD = MSVCDYNAMIC64 ]; then ci/build.sh; fi'
test_script:
- cmd: 'ci\test.bat'
- sh: 'if [ $BUILD = MSVCDYNAMIC64 ] && [ $(uname) != Darwin ]; then ci/test.sh; fi'