Browse Source

Try to correct build scripts

bel 9 years ago
parent
commit
1e4a9ee87d
2 changed files with 7 additions and 0 deletions
  1. 1 0
      .travis.yml
  2. 6 0
      appveyor.yml

+ 1 - 0
.travis.yml

@@ -2478,6 +2478,7 @@ matrix:
 script:
   - CTEST_OUTPUT_ON_FAILURE=1 make all test
 
+# Coveralls options: https://github.com/eddyxu/cpp-coveralls/blob/master/README.md
 after_success:
   - if [ "${BUILD_TYPE}" == "Coverage" -a "${TRAVIS_OS_NAME}" == "linux" ]; then
       coveralls --include src --exclude main.c --include include --gcov-options '\-lp' --root .. --build-root .;

+ 6 - 0
appveyor.yml

@@ -198,6 +198,12 @@ build_script:
 
 test_script:
   - cd "%build_path%"
+  - cmd /c copy C:\OpenSSL-Win32\libeay32.dll libeay32.dll
+  - cmd /c copy C:\OpenSSL-Win32\libssl32.dll libssl32.dll
+  - cmd /c copy C:\OpenSSL-Win32\ssleay32.dll ssleay32.dll
+  - cmd /c copy C:\OpenSSL-Win64\libeay32.dll libeay64.dll
+  - cmd /c copy C:\OpenSSL-Win64\libssl32.dll libssl64.dll
+  - cmd /c copy C:\OpenSSL-Win64\ssleay32.dll ssleay64.dll
   - appveyor AddMessage -Category Information "Test command '%build%'"
   - set CTEST_OUTPUT_ON_FAILURE=1
   - cmd /c "%test%"