Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

is 1.15 missing @common before_install section ? #32

Closed
gempesaw opened this issue Jun 9, 2015 · 1 comment
Closed

is 1.15 missing @common before_install section ? #32

gempesaw opened this issue Jun 9, 2015 · 1 comment

Comments

@gempesaw
Copy link

gempesaw commented Jun 9, 2015

Hey,

Just upgraded to 1.15 and I'm noticing that haarg's travis-ci perl helpers aren't getting put into the before_install section of my .travis.yml. Am I doing something wrong ?

dist.ini section:

[TravisYML]
build_branch = cpan
perl_version = 5.20 5.18 5.16 5.14 5.12 5.10
test_authordeps = 0
test_deps = 0

I ran the following bash commands:

cpanm --reinstall Dist::Zilla::Plugin::TravisYML
dzil new TestThing
cd TestThing/
dzil build
cat .travis.yml

and got the following travis yaml file:

sudo: false
language: perl
perl:
   - '5.20'
   - '5.18'
   - '5.16'
   - '5.14'
   - '5.12'
   - '5.10'
matrix:
   fast_finish: true
before_install:
   - git config --global user.name "TravisCI"
   - git config --global user.email $HOSTNAME":not-for-mail@travis-ci.org"
install:
   - cpanm --quiet --notest --skip-satisfied Dist::Zilla
   - "dzil authordeps          --missing | grep -vP '[^\\w:]' | xargs -n 5 -P 10 cpanm --quiet --notest"
   - "dzil listdeps   --author --missing | grep -vP '[^\\w:]' | xargs -n 5 -P 10 cpanm --quiet --notest"
script:
   - dzil smoke --release --author

(transcript with bash output: https://gist.github.com/gempesaw/4d7680b2d2a83dd152fb )

thanks! :D

@gempesaw
Copy link
Author

oh, i see, that section is no longer needed. thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant