mesa: accept TYPE_PUSH/POP_GROUP with glDebugMessageInsert
[mesa.git] / appveyor.yml
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
21 version: '{build}'
22
23 branches:
24 except:
25 - /^travis.*$/
26
27 clone_depth: 5
28
29 cache:
30 - llvm-3.3.1-msvc2013-mtd.7z
31
32 environment:
33 LLVM_ARCHIVE: llvm-3.3.1-msvc2013-mtd.7z
34
35 install:
36 # Install pip
37 - python --version
38 - python -m ensurepip
39 # Install Mako
40 - python -m pip install --egg Mako
41 # Install SCons
42 - python -m pip install --egg scons==2.4.1
43 - scons --version
44 # Install flex/bison
45 - cinst winflexbison -y
46 - win_flex --version
47 - win_bison --version
48 # Download and extract LLVM
49 - if not exist "%LLVM_ARCHIVE%" appveyor DownloadFile "https://people.freedesktop.org/~jrfonseca/llvm/%LLVM_ARCHIVE%"
50 - 7z x -y "%LLVM_ARCHIVE%" > nul
51 - mkdir llvm\bin
52 - set LLVM=%CD%\llvm
53
54 build_script:
55 - scons -j%NUMBER_OF_PROCESSORS% MSVC_VERSION=12.0 llvm=1
56
57
58 # It's possible to setup notification here, as described in
59 # http://www.appveyor.com/docs/notifications#appveyor-yml-configuration , but
60 # doing so would cause the notification settings to be replicated across all
61 # repos, which is most likely undesired. So it's better to rely on the
62 # Appveyor global/project notification settings.