Commit Graph

3 Commits

Author SHA1 Message Date
Pawel Kurdybacha
1baec268e6 Problem: Appveyor Windows build does not cache googletest
Solution: add googletest build directory to cache
2018-04-21 21:58:47 +01:00
Pawel Kurdybacha
82a7f76594 Problem: Appveyor build is slow. (#212)
* Problem: Appveyor Windows build is slow

Solution: use Appveyor caching for libzmq dependency
2018-04-20 11:44:21 +01:00
Pawel Kurdybacha
fdc145a09e Problem: Windows build broken because of multiple issues (#204)
* Problem: Windows build broken because of multiple issues

Windows issues:
* missing includes files
  Solution: added missing <memory> and <unordered_map>
  Here <map> was replaced with <unordered_map> as there is no need for
  sorted map.
* googletest fails because deprecation warning causing errors.
  Solution: D_SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING option added.
* googletest fails because by default, new Visual Studio projects
  link the C runtimes dynamically but Google Test links them statically.
  Solution: gtest_force_shared_crt=ON option added.

Besides that adding appveyor.yml configuration to add Windows build to
CI in order to prevent accidental Windows build breakage.
For now only Debug configuration as Release requires more time to figure
out.

* Problem: Windows build takes too long

Solution: disabling tests and perf tools

* Problem: Windows unit_tests executable not finding lizmq dll.

Solution: copy libzmq dll to build bin directory.

* Problem: Windows build fails because wrong test path provided
2018-04-17 09:29:47 +01:00