Clone of mesa.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

appveyor.yml 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. # http://www.appveyor.com/docs/appveyor-yml
  2. #
  3. # To setup AppVeyor for your own personal repositories do the following:
  4. # - Sign up
  5. # - Add a new project
  6. # - Select Git and fill in the Git clone URL
  7. # - Setup a Git hook as explained in
  8. # https://github.com/appveyor/webhooks#installing-git-hook
  9. # - Check 'Settings > General > Skip branches without appveyor'
  10. # - Check 'Settings > General > Rolling builds'
  11. # - Setup the global or project notifications to your liking
  12. #
  13. # Note that kicking (or restarting) a build via the web UI will not work, as it
  14. # will fail to find appveyor.yml . The Git hook is the most practical way to
  15. # kick a build.
  16. #
  17. # See also:
  18. # - http://help.appveyor.com/discussions/problems/2209-node-grunt-build-specify-a-project-or-solution-file-the-directory-does-not-contain-a-project-or-solution-file
  19. # - http://help.appveyor.com/discussions/questions/1184-build-config-vs-appveyoryaml
  20. version: '{build}'
  21. branches:
  22. except:
  23. - /^travis.*$/
  24. clone_depth: 5
  25. cache:
  26. - win_flex_bison-2.4.5.zip
  27. - llvm-3.3.1-msvc2013-mtd.7z
  28. environment:
  29. WINFLEXBISON_ARCHIVE: win_flex_bison-2.4.5.zip
  30. LLVM_ARCHIVE: llvm-3.3.1-msvc2013-mtd.7z
  31. install:
  32. # Check pip
  33. - python --version
  34. - python -m pip --version
  35. # Install Mako
  36. - python -m pip install --egg Mako
  37. # Install SCons
  38. - python -m pip install --egg scons==2.4.1
  39. - scons --version
  40. # Install flex/bison
  41. - if not exist "%WINFLEXBISON_ARCHIVE%" appveyor DownloadFile "http://downloads.sourceforge.net/project/winflexbison/%WINFLEXBISON_ARCHIVE%"
  42. - 7z x -y -owinflexbison\ "%WINFLEXBISON_ARCHIVE%" > nul
  43. - set Path=%CD%\winflexbison;%Path%
  44. - win_flex --version
  45. - win_bison --version
  46. # Download and extract LLVM
  47. - if not exist "%LLVM_ARCHIVE%" appveyor DownloadFile "https://people.freedesktop.org/~jrfonseca/llvm/%LLVM_ARCHIVE%"
  48. - 7z x -y "%LLVM_ARCHIVE%" > nul
  49. - mkdir llvm\bin
  50. - set LLVM=%CD%\llvm
  51. build_script:
  52. - scons -j%NUMBER_OF_PROCESSORS% MSVC_VERSION=12.0 llvm=1
  53. # It's possible to setup notification here, as described in
  54. # http://www.appveyor.com/docs/notifications#appveyor-yml-configuration , but
  55. # doing so would cause the notification settings to be replicated across all
  56. # repos, which is most likely undesired. So it's better to rely on the
  57. # Appveyor global/project notification settings.