Skip to content

Commit

Permalink
add some config
Browse files Browse the repository at this point in the history
  • Loading branch information
araraloren committed Mar 17, 2018
1 parent f2f3345 commit d956ea4
Show file tree
Hide file tree
Showing 3 changed files with 69 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 --gen-nqp
- nmake install
- SET PATH=%APPVEYOR_BUILD_FOLDER%\..\rakudo\install\bin;%PATH%
- cd %APPVEYOR_BUILD_FOLDER%

build: off

test_script:
# Install dependency Distribution::Common
- git clone https://github.com/ugexe/zef %APPVEYOR_BUILD_FOLDER%\..\zef
- perl6 -I %APPVEYOR_BUILD_FOLDER%\..\zef\lib %APPVEYOR_BUILD_FOLDER%\..\zef\bin\zef --depsonly install .
# test
- prove -v -e "perl6 -Ilib" t/

shallow_clone: true
36 changes: 36 additions & 0 deletions .gitignore
@@ -0,0 +1,36 @@
!Build/
.last_cover_stats
/META.yml
/META.json
/MYMETA.*
*.o
*.pm.tdy
*.bs

# Devel::Cover
cover_db/

# Devel::NYTProf
nytprof.out

# Dizt::Zilla
/.build/

# Module::Build
_build/
Build
Build.bat

# Module::Install
inc/

# ExtUitls::MakeMaker
/blib/
/_eumm/
/*.gz
/Makefile
/Makefile.old
/MANIFEST.bak
/pm_to_blib
/*.zip
.precomp/
8 changes: 8 additions & 0 deletions .travis.yml
@@ -0,0 +1,8 @@
language: perl6

perl6:
- latest

install:
- rakudobrew build zef
- zef install .

0 comments on commit d956ea4

Please sign in to comment.