Jenkins - Advanced Subversion from Advanced Collector to Task

I am using Jenkins and the Promoted Builds plugin. When I promote the assembly, I want to start a new build task and transfer the specific version of Subversion Revision that the advanced assembly used.

I have the Trigger Parameterized Builds plugin installed, so I can say that my Promoted Build is invoked by a parameterized build, and even the option in “Add Parameters” indicates “Subversion Version”.

In fact, it does nothing; the called parameterized assembly still uses the latest version from the SVN repository.

Any ideas what I am missing?

+3
source share
1 answer

Git Promotion.java:

Promotion.this.getActions().add(Promotion.this.getTarget().getAction(SubversionTagAction.class));

, SubversionTagAction Parameterized Build Trigger URL- SVN SVN-.

- , Action, .

0

All Articles