Skip to content

Commit

Permalink
Add support for AppVeyor Windows CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
azawawi committed Jan 18, 2016
1 parent 4e3d05d commit e354c09
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions appveyor.yml
@@ -0,0 +1,25 @@
os: Visual Studio 2015

platform: x64

install:
- '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64'
- choco install strawberryperl
- SET PATH=C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;%PATH%
- git clone https://github.com/rakudo/rakudo.git %APPVEYOR_BUILD_FOLDER%\..\rakudo
- cd %APPVEYOR_BUILD_FOLDER%\..\rakudo
- perl Configure.pl --gen-moar=HEAD --gen-nqp
- nmake install
- SET PATH=%APPVEYOR_BUILD_FOLDER%\..\rakudo\install\bin;%PATH%
- cd %APPVEYOR_BUILD_FOLDER%

build: off

test_script:
- prove -v -e "perl6 -Ilib" t/
- perl6 -Ilib bin/zef --verbose install .
- SET PATH=%APPVEYOR_BUILD_FOLDER%\..\rakudo\install\share\perl6\site\bin;%PATH%
- cd %APPVEYOR_BUILD_FOLDER%\..
- zef --verbose --force install Zef

shallow_clone: true

0 comments on commit e354c09

Please sign in to comment.