First attempt at appveyor configuration

Cette révision appartient à :
Douglas Stebila 2019-02-06 19:26:18 -05:00 révisé par Thom Wiggers
Parent 7c0ecc0cdb
révision b096330808
Signature inconnue de Gitea
ID de la clé GPG: 001BB0A7CE26E363
2 fichiers modifiés avec 31 ajouts et 0 suppressions

12
appveyor.yml Fichier normal
Voir le fichier

@ -0,0 +1,12 @@
version: 1.0.{build}
image: Visual Studio 2017
build:
verbosity: minimal
init:
- call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat"
build_script:
- scripts_windows\build_all.bat

19
scripts_windows/build_all.bat Fichier normal
Voir le fichier

@ -0,0 +1,19 @@
@ECHO OFF
SETLOCAL
SET EL=0
REM CALL "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat"
REM IF ERRORLEVEL 1 SET EL=1
FOR /D %%K IN (crypto_kem\*) DO (
FOR /D %%L IN (%%K\*) DO (
cd %%L
nmake /f Makefile.Microsoft_nmake clean
IF ERRORLEVEL 1 SET EL=2
nmake /f Makefile.Microsoft_nmake
IF ERRORLEVEL 1 SET EL=3
cd ..\..\..
)
)
EXIT /b %EL%