java - Travis CI: config not read -
i'm building maven project travis ci. @ step in build, gpg plugin being called. no passphrase provided, fails.
i've tried override build lifecycle phases prevent gpg plugin being activated. however, custom steps don't seem executed.
the .travis.yml
file in question here. however, viewing build log on travis, still see default build commands being called. in log of custom build lifecycle called.
why travis not reading repository's .travis.yml
file? i've used web linter, , checks out there. i've run of commands in build file locally, , execute correctly. can't see wrong travis configuration/setup.
your file .travis.yml
being read, execution breaking in this command:
mvn install -dskiptests=true -dmaven.javadoc.skip=true -dsource.skip=true -dgpg.skip=true -b
reading log... problem seems maven-gpg-plugin. check line 1498 of log post.
the error: gpg secret key not avaiable. possible solution.
since command breaking execution, build stops prematurely.
Comments
Post a Comment