Last active
August 29, 2015 14:22
-
-
Save gempesaw/4d7680b2d2a83dd152fb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bash-3.2$ cpanm --reinstall Dist::Zilla::Plugin::TravisYML | |
--> Working on Dist::Zilla::Plugin::TravisYML | |
Fetching http://www.cpan.org/authors/id/B/BB/BBYRD/Dist-Zilla-TravisCI-1.15.tar.gz ... OK | |
Configuring Dist-Zilla-TravisCI-1.15 ... OK | |
Building and testing Dist-Zilla-TravisCI-1.15 ... OK | |
Successfully reinstalled Dist-Zilla-TravisCI-1.15 | |
1 distribution installed | |
bash-3.2$ dzil new TestThing | |
[DZ] making target dir /private/tmp/TestThing | |
[DZ] writing files to /private/tmp/TestThing | |
[Git::Init] Initializing a new git repository in /private/tmp/TestThing | |
[Git::Init] Made initial commit | |
Shall I create a GitHub repository for TestThing? [Y/n]: n | |
[DZ] dist minted in ./TestThing | |
bash-3.2$ cd TestThing/ | |
bash-3.2$ dzil build | |
[DZ] beginning to build TestThing | |
[DZ] guessing dist's main_module is lib/TestThing.pm | |
[GithubMeta] A remote named 'origin' was specified, but does not appear to exist. | |
[GithubMeta] skipping meta.resources.repository creation | |
[TravisYML] Rebuilding .travis.yml | |
[DZ] writing TestThing in TestThing-0.01 | |
[CopyFilesFromBuild] Copied TestThing-0.01/cpanfile to ./cpanfile | |
[DZ] building archive with Archive::Tar; install Archive::Tar::Wrapper 0.15 or newer for improved speed | |
[DZ] writing archive to TestThing-0.01.tar.gz | |
[DZ] built in TestThing-0.01 | |
bash-3.2$ cat .travis.yml | |
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":[email protected]" | |
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 | |
bash-3.2$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment