From df3dfb906972b971ad99af3eb69faa300339077c Mon Sep 17 00:00:00 2001 From: psychocrypt Date: Sat, 22 Jul 2017 21:41:46 +0200 Subject: use precompiled dependencies - update appveyor CI - update `WINCOMPILE.md` guide --- .appveyor.yml | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) (limited to '.appveyor.yml') diff --git a/.appveyor.yml b/.appveyor.yml index 3f93c86..381e544 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -9,23 +9,20 @@ clone_folder: c:\xmr-stak-cpu install: - mkdir c:\xmr-stak-dep - - curl -fsS http://slproweb.com/download/Win64OpenSSL-1_0_2L.exe -o Win64OpenSSL.exe - - Win64OpenSSL.exe /silent /verysilent /sp- /suppressmsgboxes - - curl -fsS https://www.open-mpi.org/software/hwloc/v1.11/downloads/hwloc-win64-build-1.11.7.zip -o hwloc-win64-build.zip - - 7z x hwloc-win64-build.zip -o"c:\xmr-stak-dep" -y > nul - - curl -fsS http://mirror.reismil.ch/gnu/libmicrohttpd/libmicrohttpd-latest-w32-bin.zip -o libmicrohttpd-w32-bin.zip - - 7z x libmicrohttpd-w32-bin.zip -o"c:\xmr-stak-dep" -y > nul + - curl -sL https://github.com/fireice-uk/xmr-stak-dep/releases/download/v1/xmr-stak-dep.zip -o xmr-stak-dep.zip + - 7z x xmr-stak-dep.zip -o"c:\xmr-stak-dep" -y > nul build_script: - call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" - cd c:\xmr-stak-cpu - - set CMAKE_PREFIX_PATH=C:\xmr-stak-dep\hwloc-win64-build-1.11.7;C:\xmr-stak-dep\libmicrohttpd-0.9.55-w32-bin\x86_64\VS2017\Release-static; - - cmake -DOpenSSL_ENABLE=OFF -G "Visual Studio 15 2017 Win64" -T v141,host=x64 . + - mkdir build + - cd build + - set CMAKE_PREFIX_PATH=C:\xmr-stak-dep\hwloc;C:\xmr-stak-dep\libmicrohttpd;C:\xmr-stak-dep\openssl; + - cmake -G "Visual Studio 15 2017 Win64" -T v141,host=x64 .. - msbuild xmr-stak-cpu.sln /p:Configuration=Release test_script: - - cd c:\xmr-stak-cpu\bin\Release - - copy c:\xmr-stak-dep\hwloc-win64-build-1.11.7\bin\libhwloc-5.dll . - - copy c:\xmr-stak-dep\libmicrohttpd-0.9.55-w32-bin\x86_64\VS2017\Release-dll\libmicrohttpd-dll.dll . + - cd c:\xmr-stak-cpu\build\bin\Release - dir -# - xmr-stak-cpu.exe -c ..\..\..\config.txt + - copy ..\..\..\config.txt . +# - xmr-stak-cpu.exe -- cgit v1.1