Generate a compatibility matrix for plugins against Jenkins core.
See https://wiki.jenkins-ci.org/display/JENKINS/Plugin+Compatibility+Tester for background.
To do:
- enable Issues in this GitHub repo so we can track these to-do items more sanely (prefer not to use JIRA for non-plugins)
InternalMavenRunner
currently still seems to runinstall
goal which is very undesirable on release tags- should run
surefire-report:report
goal instead (orsurefire-report:report-only
after) and display link to HTML results from index page - Export everything to GAE, dropping the data storing in XML files (which pollutes the filesystem and can be easily delete if we are careless) and processing with XSL. (migration already started to GAE datastorage, but not completely finished, especially on build logs). (jglick: this is undesirable, need to be able to review local results without uploading them)
- Improve GAE app to allow plugin maintainers to subscribe to notifications on plugin compatibility tests for their plugins against new jenkins versions released.
- Remove possibility, on GAE app, to select both "every plugins" and "every cores" results... because it generates too much results and crash GAE datastore
- most plugin tests fail to build using internal Maven;
PlexusWagonProvider.lookup
with aroleHint=https
fails for no clear reason, and some missingSNAPSHOT
s cause a build failure related to https://github.com/stapler/stapler-adjunct-codemirror/commit/da995b03a1f165fef7c9d34eadb15797f58399cd - testing a module not at the root of its Git repo fails (
findbugs
succeeds but tests against old Jenkins core) - testing
analysis-core
fails because it usesorg.jvnet.hudson.plugins:analysis-pom
as a parent - when testing a plugin depending on other plugins, bump up the dependency to the latest released version…or even build the dependency from
master
sources