blob: f66689ea4bbc25c4e82c54c0d42a6f9fde881917 [file] [log] [blame]
Jose Fonseca9e6af562015-11-26 10:39:41 +00001# 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
Jose Fonseca1c0f95f2016-01-24 18:33:58 +00009# - Check 'Settings > General > Skip branches without appveyor.yml'
Jose Fonseca9e6af562015-11-26 10:39:41 +000010# - 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
21version: '{build}'
22
23branches:
24 except:
25 - /^travis.*$/
26
Jose Fonseca1c0f95f2016-01-24 18:33:58 +000027# 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
34clone_depth: 100
Jose Fonseca9e6af562015-11-26 10:39:41 +000035
Jose Fonseca8550be72018-10-12 10:21:38 +010036# https://www.appveyor.com/docs/build-cache/
Jose Fonseca9e6af562015-11-26 10:39:41 +000037cache:
Jose Fonseca8550be72018-10-12 10:21:38 +010038- '%LOCALAPPDATA%\pip\Cache -> appveyor.yml'
Jose Fonsecabfb8afb2018-10-12 10:09:07 +010039- win_flex_bison-2.5.15.zip
Jose Fonsecab94f9cd2018-10-12 09:52:52 +010040- llvm-5.0.1-msvc2017-mtd.7z
Dylan Baker4e078692019-10-14 10:20:54 -070041- subprojects\packagecache -> subprojects\*.wrap
Jose Fonseca9e6af562015-11-26 10:39:41 +000042
Jose Fonsecae2c614a2020-08-04 14:16:37 +010043os: Visual Studio 2019
Jose Fonseca06b63f12016-08-11 14:11:00 +010044
Jose Fonseca9e5e3a82018-08-17 16:39:33 +010045init:
46# Appveyor defaults core.autocrlf to input instead of the default (true), but
47# that can hide problems processing CRLF text on Windows
48- git config --global core.autocrlf true
49
Jose Fonseca9e6af562015-11-26 10:39:41 +000050environment:
Jose Fonsecae2c614a2020-08-04 14:16:37 +010051 Path: C:\Python38-x64;C:\Python38-x64\Scripts;%Path%
Jose Fonseca65b8d722019-01-25 14:07:43 +000052 WINFLEXBISON_VERSION: 2.5.15
53 LLVM_ARCHIVE: llvm-5.0.1-msvc2017-mtd.7z
Dylan Bakerf066c962019-01-23 14:21:26 -080054 matrix:
55 - compiler: msvc
56 buildsystem: scons
Jose Fonseca9e6af562015-11-26 10:39:41 +000057
58install:
Dylan Baker0b6b7ff2019-10-15 11:17:54 -070059- cmd: .appveyor\appveyor_msvc.bat install
Jose Fonseca9e6af562015-11-26 10:39:41 +000060
61build_script:
Dylan Baker0b6b7ff2019-10-15 11:17:54 -070062- cmd: .appveyor\appveyor_msvc.bat build_script
Jose Fonseca9e6af562015-11-26 10:39:41 +000063
Dylan Bakerf066c962019-01-23 14:21:26 -080064test_script:
Dylan Baker0b6b7ff2019-10-15 11:17:54 -070065- cmd: .appveyor\appveyor_msvc.bat test_script
Jose Fonseca9e6af562015-11-26 10:39:41 +000066
67# It's possible to setup notification here, as described in
68# http://www.appveyor.com/docs/notifications#appveyor-yml-configuration , but
69# doing so would cause the notification settings to be replicated across all
70# repos, which is most likely undesired. So it's better to rely on the
71# Appveyor global/project notification settings.