Clone of mesa.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

appveyor.yml 2.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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.yml'
  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. # Don't download the full Mesa history to speed up cloning. However the clone
  25. # depth must not be too small, otherwise builds might fail when lots of patches
  26. # are committed in succession, because the desired commit is not found on the
  27. # truncated history.
  28. #
  29. # See also:
  30. # - https://www.appveyor.com/blog/2014/06/04/shallow-clone-for-git-repositories
  31. clone_depth: 100
  32. cache:
  33. - win_flex_bison-2.4.5.zip
  34. - llvm-3.3.1-msvc2013-mtd.7z
  35. os: Visual Studio 2013
  36. environment:
  37. WINFLEXBISON_ARCHIVE: win_flex_bison-2.4.5.zip
  38. LLVM_ARCHIVE: llvm-3.3.1-msvc2013-mtd.7z
  39. install:
  40. # Check pip
  41. - python --version
  42. - python -m pip --version
  43. # Install Mako
  44. - python -m pip install --egg Mako
  45. # Install pywin32 extensions, needed by SCons
  46. - python -m pip install pypiwin32
  47. # Install SCons
  48. - python -m pip install --egg scons==2.4.1
  49. - scons --version
  50. # Install flex/bison
  51. - if not exist "%WINFLEXBISON_ARCHIVE%" appveyor DownloadFile "https://downloads.sourceforge.net/project/winflexbison/old_versions/%WINFLEXBISON_ARCHIVE%"
  52. - 7z x -y -owinflexbison\ "%WINFLEXBISON_ARCHIVE%" > nul
  53. - set Path=%CD%\winflexbison;%Path%
  54. - win_flex --version
  55. - win_bison --version
  56. # Download and extract LLVM
  57. - if not exist "%LLVM_ARCHIVE%" appveyor DownloadFile "https://people.freedesktop.org/~jrfonseca/llvm/%LLVM_ARCHIVE%"
  58. - 7z x -y "%LLVM_ARCHIVE%" > nul
  59. - mkdir llvm\bin
  60. - set LLVM=%CD%\llvm
  61. build_script:
  62. - scons -j%NUMBER_OF_PROCESSORS% MSVC_VERSION=12.0 llvm=1
  63. after_build:
  64. - scons -j%NUMBER_OF_PROCESSORS% MSVC_VERSION=12.0 llvm=1 check
  65. # It's possible to setup notification here, as described in
  66. # http://www.appveyor.com/docs/notifications#appveyor-yml-configuration , but
  67. # doing so would cause the notification settings to be replicated across all
  68. # repos, which is most likely undesired. So it's better to rely on the
  69. # Appveyor global/project notification settings.