Jenkins svn post builds

I am trying to commit post builds in Jenkins CI when this succeeded.

Is there any way to do this?

My problem is that when I create it, some dll is created in the workspace, which I need to pass svn to.

+5
source share
1 answer

It depends on the build technology (e.g. Ant, Maven, MSBuild or FianlBuilder) that you use to create the source code. To test your build results in svn, you must add a few new steps at the end of build scripts. This step will simply add your build results to svn. For example, your step may contain:

svn commit -file build-output.1 build-output.2

, svn.

+3

All Articles