Mercurial > hg > Others > Rakudo
comparison appveyor.yml @ 0:c341f82e7ad7 default tip
Rakudo branch in cr.ie.u-ryukyu.ac.jp
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 26 Dec 2019 16:50:27 +0900 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:c341f82e7ad7 |
---|---|
1 # Builds and tests rakudo for different configurations | |
2 # For appveyor.yml syntax reference, please see | |
3 # https://www.appveyor.com/docs/appveyor-yml | |
4 # | |
5 # JVM is already preinstalled in build worker. Please see | |
6 # https://www.appveyor.com/docs/installed-software#java | |
7 # | |
8 | |
9 # Platforms (e.g. x64, x86) | |
10 platform: | |
11 - x64 | |
12 | |
13 # Operating system (build VM template) | |
14 os: Visual Studio 2017 | |
15 | |
16 configuration: | |
17 - Release | |
18 | |
19 # Monitored branches | |
20 branches: | |
21 only: | |
22 - master | |
23 - /smoke-me/ | |
24 | |
25 # To stop automatic build of VS solution files | |
26 build: off | |
27 | |
28 # Build configurations | |
29 environment: | |
30 matrix: | |
31 - RAKUDO_OPTIONS: --backends=moar --gen-nqp --gen-moar | |
32 - RAKUDO_OPTIONS: --backends=moar --gen-nqp=master --gen-moar | |
33 - RAKUDO_OPTIONS: --backends=moar --gen-nqp=master --gen-moar=master | |
34 # - RAKUDO_OPTIONS: --backends=jvm --gen-nqp | |
35 # - RAKUDO_OPTIONS: --backends=jvm --gen-nqp=master | |
36 | |
37 # Allow failures from certain build configuration | |
38 #matrix: | |
39 # allow_failures: | |
40 # - platform: x64 | |
41 # RAKUDO_OPTIONS: --backends=jvm --gen-nqp | |
42 # - platform: x64 | |
43 # RAKUDO_OPTIONS: --backends=jvm --gen-nqp=master | |
44 | |
45 # Installation | |
46 install: | |
47 - '"C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat"' | |
48 - appveyor-retry choco install strawberryperl --version 5.20.1.1 --allow-empty-checksums | |
49 - SET PATH=C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;%PATH% | |
50 - ECHO %RAKUDO_OPTIONS% | |
51 - CD %APPVEYOR_BUILD_FOLDER% | |
52 - SET RAKUDO_SKIP_TIMING_TESTS=1 | |
53 | |
54 # Testing | |
55 test_script: | |
56 - perl Configure.pl %RAKUDO_OPTIONS% | |
57 - SET TEST_JOBS=1 | |
58 - SET HARNESS_VERBOSE=1 | |
59 - nmake test | |
60 - nmake install |