summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2017-11-10 13:27:06 +0000
committerJon Turney <jon.turney@dronecode.org.uk>2019-01-07 13:40:57 +0000
commit5334dafee265d78abdfcf30e2c693e0791bfecf5 (patch)
tree9ab04519b930aa827944ed969011eac811831397 /scripts
parentd015888efbc544c63e29c805cda9cd8521320877 (diff)
appveyor: put build steps in a script, rather than inline in appveyor.yml
Diffstat (limited to 'scripts')
-rw-r--r--scripts/appveyor_msvc.bat38
1 files changed, 38 insertions, 0 deletions
diff --git a/scripts/appveyor_msvc.bat b/scripts/appveyor_msvc.bat
new file mode 100644
index 00000000000..6a85e830ec8
--- /dev/null
+++ b/scripts/appveyor_msvc.bat
@@ -0,0 +1,38 @@
+goto %1
+
+:install
+rem Check git config
+git config core.autocrlf
+rem Check pip
+python --version
+python -m pip --version
+rem Install Mako
+python -m pip install Mako==1.0.7
+rem Install pywin32 extensions, needed by SCons
+python -m pip install pypiwin32
+rem Install python wheels, necessary to install SCons via pip
+python -m pip install wheel
+rem Install SCons
+python -m pip install scons==3.0.1
+call scons --version
+rem Install flex/bison
+set WINFLEXBISON_ARCHIVE=win_flex_bison-%WINFLEXBISON_VERSION%.zip
+if not exist "%WINFLEXBISON_ARCHIVE%" appveyor DownloadFile "https://github.com/lexxmark/winflexbison/releases/download/v%WINFLEXBISON_VERSION%/%WINFLEXBISON_ARCHIVE%"
+7z x -y -owinflexbison\ "%WINFLEXBISON_ARCHIVE%" > nul
+set Path=%CD%\winflexbison;%Path%
+win_flex --version
+win_bison --version
+rem Download and extract LLVM
+if not exist "%LLVM_ARCHIVE%" appveyor DownloadFile "https://people.freedesktop.org/~jrfonseca/llvm/%LLVM_ARCHIVE%"
+7z x -y "%LLVM_ARCHIVE%" > nul
+mkdir llvm\bin
+set LLVM=%CD%\llvm
+goto :eof
+
+:build_script
+call scons -j%NUMBER_OF_PROCESSORS% MSVC_VERSION=14.1 llvm=1
+goto :eof
+
+:after_build
+call scons -j%NUMBER_OF_PROCESSORS% MSVC_VERSION=14.1 llvm=1 check
+goto :eof