You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

appveyor.yml 558 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. version: 0.2.15.{build}
  2. #environment:
  3. platform:
  4. - x64
  5. configuration: Release
  6. clone_folder: c:\projects\OpenBLAS
  7. init:
  8. - git config --global core.autocrlf input
  9. build:
  10. project: OpenBLAS.sln
  11. clone_depth: 5
  12. #branches to build
  13. branches:
  14. only:
  15. - master
  16. - develop
  17. - cmake
  18. skip_tags: true
  19. matrix:
  20. fast_finish: true
  21. skip_commits:
  22. # Add [av skip] to commit messages
  23. message: /\[av skip\]/
  24. before_build:
  25. - echo Running cmake...
  26. - cd c:\projects\OpenBLAS
  27. - cmake -G "Visual Studio 12 Win64" .
  28. test_script:
  29. - echo Build OK!