Skip to content

Commit b4c6c4c

Browse files
committed
also build on appveyor
1 parent a1f6312 commit b4c6c4c

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

appveyor.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
version: 1.18.2-develop+{build}
2+
branches:
3+
only:
4+
- master
5+
- develop
6+
- /^release/
7+
- /^appveyor/
8+
- /^build-ci/
9+
image:
10+
- Visual Studio 2017
11+
- Visual Studio 2015
12+
build_script:
13+
- cmd: >-
14+
if "Visual Studio 2017"=="%APPVEYOR_BUILD_WORKER_IMAGE%" call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat"
15+
if "Visual Studio 2015"=="%APPVEYOR_BUILD_WORKER_IMAGE%" call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64
16+
if "Visual Studio 2015"=="%APPVEYOR_BUILD_WORKER_IMAGE%" call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86_amd64
17+
cd..
18+
git clone https://github.com/libtom/libtommath.git --branch=master
19+
cd libtommath
20+
nmake -f makefile.msvc
21+
cd..
22+
cd libtomcrypt
23+
nmake -f makefile.msvc all
24+
test_script:
25+
- cmd: test.exe

0 commit comments

Comments
 (0)