blob: 68cc368a3a1cf8899f2f25664b746416da28cbd3 [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
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
21version: '{build}'
22
23branches:
24 except:
25 - /^travis.*$/
26
27clone_depth: 5
28
29cache:
Jose Fonsecaa9a0c692015-12-08 22:26:32 +000030- win_flex_bison-2.4.5.zip
Jose Fonseca9e6af562015-11-26 10:39:41 +000031- llvm-3.3.1-msvc2013-mtd.7z
32
33environment:
Jose Fonsecaa9a0c692015-12-08 22:26:32 +000034 WINFLEXBISON_ARCHIVE: win_flex_bison-2.4.5.zip
Jose Fonseca9e6af562015-11-26 10:39:41 +000035 LLVM_ARCHIVE: llvm-3.3.1-msvc2013-mtd.7z
36
37install:
Jose Fonsecaa9a0c692015-12-08 22:26:32 +000038# Check pip
Jose Fonseca9e6af562015-11-26 10:39:41 +000039- python --version
Jose Fonsecaa9a0c692015-12-08 22:26:32 +000040- python -m pip --version
Jose Fonseca9e6af562015-11-26 10:39:41 +000041# Install Mako
42- python -m pip install --egg Mako
43# Install SCons
44- python -m pip install --egg scons==2.4.1
45- scons --version
46# Install flex/bison
Jose Fonsecaa9a0c692015-12-08 22:26:32 +000047- if not exist "%WINFLEXBISON_ARCHIVE%" appveyor DownloadFile "http://downloads.sourceforge.net/project/winflexbison/%WINFLEXBISON_ARCHIVE%"
48- 7z x -y -owinflexbison\ "%WINFLEXBISON_ARCHIVE%" > nul
49- set Path=%CD%\winflexbison;%Path%
Jose Fonseca9e6af562015-11-26 10:39:41 +000050- win_flex --version
51- win_bison --version
52# Download and extract LLVM
53- if not exist "%LLVM_ARCHIVE%" appveyor DownloadFile "https://people.freedesktop.org/~jrfonseca/llvm/%LLVM_ARCHIVE%"
54- 7z x -y "%LLVM_ARCHIVE%" > nul
55- mkdir llvm\bin
56- set LLVM=%CD%\llvm
57
58build_script:
59- scons -j%NUMBER_OF_PROCESSORS% MSVC_VERSION=12.0 llvm=1
60
61
62# It's possible to setup notification here, as described in
63# http://www.appveyor.com/docs/notifications#appveyor-yml-configuration , but
64# doing so would cause the notification settings to be replicated across all
65# repos, which is most likely undesired. So it's better to rely on the
66# Appveyor global/project notification settings.