OSDN Git Service

appveyor: Update to newer Mako/winflexbison versions.
[android-x86/external-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.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
21 version: '{build}'
22
23 branches:
24   except:
25   - /^travis.*$/
26
27 # Don't download the full Mesa history to speed up cloning.  However the clone
28 # depth must not be too small, otherwise builds might fail when lots of patches
29 # are committed in succession, because the desired commit is not found on the
30 # truncated history.
31 #
32 # See also:
33 # - https://www.appveyor.com/blog/2014/06/04/shallow-clone-for-git-repositories
34 clone_depth: 100
35
36 cache:
37 - win_flex_bison-2.5.15.zip
38 - llvm-5.0.1-msvc2017-mtd.7z
39
40 os: Visual Studio 2017
41
42 init:
43 # Appveyor defaults core.autocrlf to input instead of the default (true), but
44 # that can hide problems processing CRLF text on Windows
45 - git config --global core.autocrlf true
46
47 environment:
48   WINFLEXBISON_VERSION: 2.5.15
49   LLVM_ARCHIVE: llvm-5.0.1-msvc2017-mtd.7z
50
51 install:
52 # Check git config
53 - git config core.autocrlf
54 # Check pip
55 - python --version
56 - python -m pip --version
57 # Install Mako
58 - python -m pip install Mako==1.0.7
59 # Install pywin32 extensions, needed by SCons
60 - python -m pip install pypiwin32
61 # Install python wheels, necessary to install SCons via pip
62 - python -m pip install wheel
63 # Install SCons
64 - python -m pip install scons==3.0.1
65 - scons --version
66 # Install flex/bison
67 - set WINFLEXBISON_ARCHIVE=win_flex_bison-%WINFLEXBISON_VERSION%.zip
68 - if not exist "%WINFLEXBISON_ARCHIVE%" appveyor DownloadFile "https://github.com/lexxmark/winflexbison/releases/download/v%WINFLEXBISON_VERSION%/%WINFLEXBISON_ARCHIVE%"
69 - 7z x -y -owinflexbison\ "%WINFLEXBISON_ARCHIVE%" > nul
70 - set Path=%CD%\winflexbison;%Path%
71 - win_flex --version
72 - win_bison --version
73 # Download and extract LLVM
74 - if not exist "%LLVM_ARCHIVE%" appveyor DownloadFile "https://people.freedesktop.org/~jrfonseca/llvm/%LLVM_ARCHIVE%"
75 - 7z x -y "%LLVM_ARCHIVE%" > nul
76 - mkdir llvm\bin
77 - set LLVM=%CD%\llvm
78
79 build_script:
80 - scons -j%NUMBER_OF_PROCESSORS% MSVC_VERSION=14.1 llvm=1
81
82 after_build:
83 - scons -j%NUMBER_OF_PROCESSORS% MSVC_VERSION=14.1 llvm=1 check
84
85
86 # It's possible to setup notification here, as described in
87 # http://www.appveyor.com/docs/notifications#appveyor-yml-configuration , but
88 # doing so would cause the notification settings to be replicated across all
89 # repos, which is most likely undesired.  So it's better to rely on the
90 # Appveyor global/project notification settings.