.appveyor-macos.yml 381 B

123456789101112131415161718192021222324
  1. version: '{build}'
  2. image:
  3. - macos
  4. # - macos-mojave # doesn't work due to missing std::filesystem
  5. configuration:
  6. - Release
  7. - Debug
  8. branches:
  9. except:
  10. - coverity_scan
  11. before_build:
  12. - brew install libiconv
  13. - git submodule update --init --recursive
  14. - cmake -DCMAKE_INSTALL_PREFIX="%P%" -DWARNINGS=ON -DWERROR=ON -DBUILD_TESTS=ON
  15. build_script:
  16. - make
  17. # EOF #