forked from MoarVM/MoarVM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
36 lines (29 loc) · 1.01 KB
/
.appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
## Appveyor configuration for MoarVM
# We manually build and don't use MSVC's build process so disable it
build: off
platform:
- x64
- x86
install:
- dir "C:\Program Files\Microsoft SDKs\Windows"
- '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64'
- appveyor-retry choco install strawberryperl --version 5.20.1.1 --allow-empty-checksums
- SET PATH=C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;%PATH%
- perl Configure.pl --prefix=%APPVEYOR_BUILD_FOLDER%\buildprefix
- nmake install
- git clone https://github.com/perl6/nqp %APPVEYOR_BUILD_FOLDER%\nqp
- cd %APPVEYOR_BUILD_FOLDER%\nqp
- perl Configure.pl --prefix=%APPVEYOR_BUILD_FOLDER%\buildprefix
- nmake
- nmake install
environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
# Wasn't able to determine where SetEnv.cmd is for VS2017
# - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
branches:
only:
- master
#test_script:
# - cd %APPVEYOR_BUILD_FOLDER%\nqp
# - nmake m-test