Alien-premake5

 view release on metacpan or  search on metacpan

.appveyor.yml  view on Meta::CPAN

    install_berry_perl: "cmd /C git clone https://github.com/stevieb9/berrybrew && cd berrybrew/bin && berrybrew.exe install %version% && berrybrew.exe switch %version%"
    install_active_perl: "cmd /C choco install activeperl --version %version%"

    matrix:
      - install_perl: "%install_berry_perl%"
        version: "5.26.0_64"
      - install_perl: "%install_active_perl%"
        version: "5.24.1.2402"

init:
  - git config --global user.email "app@veyor.pizza"
  - git config --global user.name "App Veyor"

install:
  # Install perl
  - cmd: "%install_perl%"
  # Make sure we are in project root
  - cmd: "cd %APPVEYOR_BUILD_FOLDER%"
  # Set path for berrybrew
  - SET PATH=C:\berrybrew\%version%\c\bin;C:\berrybrew\%version%\perl\site\bin;C:\berrybrew\%version%\perl\bin;%PATH%
  # ActivePerl does not include cpanminus
  - cpan      App::cpanminus

.travis.yml  view on Meta::CPAN

  - '5.18'
  - '5.16'
  - '5.14'
matrix:
  allow_failures:
    - perl: blead
env:
  matrix:
    - ALIEN_INSTALL_TYPE=system
    - ALIEN_INSTALL_TYPE=share
  global:
    - RELEASE_TESTING=1
    - AUTHOR_TESTING=1

before_script:
  - export PATH="$HOME/.local/bin:$PATH"

before_install:
  - if [ "$ALIEN_INSTALL_TYPE" == "system" ]; then echo "Manually installing a system premake5 for testing"; mkdir -p $HOME/.local/bin; wget --quiet -O - https://github.com/premake/premake-core/releases/download/v5.0.0-alpha12/premake-5.0.0-alpha12-l...
  - eval $(curl https://travis-perl.github.io/init) --auto
  - cpanm -nq App::af



( run in 0.588 second using v1.01-cache-2.11-cpan-49f99fa48dc )