Skip to content

Instantly share code, notes, and snippets.

@MARTIMM
Last active May 30, 2018 17:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MARTIMM/b0cc86cec30dbcabf6e9732a53879dbb to your computer and use it in GitHub Desktop.
Save MARTIMM/b0cc86cec30dbcabf6e9732a53879dbb to your computer and use it in GitHub Desktop.
perl6 appveyor script to test module for windows
os: Visual Studio 2015
platform: x64
branches:
# whitelist
only:
- master
install:
- '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64'
- choco feature enable -n allowEmptyChecksums
- choco install strawberryperl
- SET PATH=C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;%PATH%
- appveyor DownloadFile "http://rakudo.org/downloads/star/rakudo-star-latest-x86_64 (JIT).msi" -FileName "%APPVEYOR_BUILD_FOLDER%\rakudo.msi"
- msiexec /i rakudo.msi /quiet /qn /norestart /log install.log
- SET PATH=C:\rakudo\bin;C:\rakudo\share\perl6\site\bin;%PATH%
- panda update
- panda installdeps .
build: off
test_script:
- prove -v --merge --exec "perl6 -Ilib" t
# fetch repository as zip archive
shallow_clone: true
# set clone depth
clone_depth: 4
environment:
PANDA_SUBMIT_TESTREPORTS: 1
@MARTIMM
Copy link
Author

MARTIMM commented May 30, 2018

needs modifications; panda is already replaced by zef etc.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment