aboutsummaryrefslogtreecommitdiffstats
path: root/SoftHSMv2/testing/appveyor/appveyor_build.bat
diff options
context:
space:
mode:
authorNingSun <ning.sun@intel.com>2018-03-14 16:35:31 -0700
committerNingSun <ning.sun@intel.com>2018-03-14 17:02:47 -0700
commitda00ff6db5e68773996ec79d711c45fb3444c580 (patch)
tree0387aa1f70a468e6c3264767454ae6f4528f59e8 /SoftHSMv2/testing/appveyor/appveyor_build.bat
parent535535b7c5f2781fa096a5fd00a762d24db4eddc (diff)
Remove win32 support in SoftHSMv2
Due to license issue, we have to remove win32 support in SoftHSMv2. Issue-ID: AAF-151 Change-Id: I31dda45ed84065819e26be8205747dd096a37432 Signed-off-by: NingSun <ning.sun@intel.com>
Diffstat (limited to 'SoftHSMv2/testing/appveyor/appveyor_build.bat')
-rw-r--r--SoftHSMv2/testing/appveyor/appveyor_build.bat51
1 files changed, 0 insertions, 51 deletions
diff --git a/SoftHSMv2/testing/appveyor/appveyor_build.bat b/SoftHSMv2/testing/appveyor/appveyor_build.bat
deleted file mode 100644
index 4e7f41f..0000000
--- a/SoftHSMv2/testing/appveyor/appveyor_build.bat
+++ /dev/null
@@ -1,51 +0,0 @@
-setlocal
-
-echo "Setting visual studio variables"
-
-call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %VCVARS_PLATFORM%
-@echo on
-
-echo "Setting PATH and other variables"
-set cur_dir=%CD%
-set PATH=%PATH%;%PYTHON_PATH%
-
-echo %cur_dir%
-cd win32
-
-python Configure.py %CONFIGURE_OPTIONS% || goto :error
-
-msbuild softhsm2.sln /p:Configuration="Release" /p:Platform="%MSBUILD_PLATFORM%" /p:PlatformToolset=v140 /target:Build || goto :error
-
-cd %cur_dir%
-
-IF "%ENV_PLATFORM%"=="x86" (set from_dir=%CD%\win32\Release) ELSE (set from_dir=%CD%\win32\x64\Release)
-
-echo "Testing build"
-
-cd %from_dir%
-cryptotest.exe || goto :error
-datamgrtest.exe || goto :error
-handlemgrtest.exe || goto :error
-objstoretest.exe || goto :error
-p11test.exe || goto :error
-sessionmgrtest.exe || goto :error
-slotmgrtest.exe || goto :error
-
-echo "Preparing output package"
-copy %from_dir%\softhsm2.dll %RELEASE_DIR% || goto :error
-copy %from_dir%\softhsm2-dump-file.exe %RELEASE_DIR% || goto :error
-copy %from_dir%\softhsm2-keyconv.exe %RELEASE_DIR% || goto :error
-copy %from_dir%\softhsm2-util.exe %RELEASE_DIR% || goto :error
-copy %cur_dir%\src\lib\common\softhsm2.conf.in %RELEASE_DIR%\softhsm2.conf || goto :error
-
-dir %RELEASE_DIR%
-
-@echo *** BUILD SUCCESSFUL ***
-endlocal
-@exit /b 0
-
-
-:error
-@echo *** BUILD FAILED ***
-endlocal
-@exit /b 1