-
Bug
-
Resolution: Unresolved
-
Major
-
None
-
Platform: All, OS: All
the svn pooling is using a Date based decision to update/checkout from SVN,
instead of using the HEAD revision.
We need to be able to chhose for a build that he must use HEAD.
- depends on
-
JENKINS-1481 Matrix Builds and Issue 1241
-
- Open
-
- is duplicated by
-
JENKINS-1263 Subversion freestyle (ant) build misses most recent revision.
-
- Closed
-
-
JENKINS-2136 Use HEAD revision in SVN update mode
-
- Closed
-
- is related to
-
JENKINS-13380 Changes on SCM during BuildWrapper.preCheckout are not checked out
-
- Closed
-
[JENKINS-1241] force using HEAD SVN version for build
Link |
New:
This issue is duplicated by |
Link | New: This issue depends on JENKINS-1481 [ JENKINS-1481 ] |
Link |
New:
This issue is duplicated by |
I've managed to patch this one, it's real easy, only one line of code change
in Class: hudson.scm.SubversionSCM
line 377:
final SVNRevision revision = SVNRevision.create(timestamp);
replace to:
final SVNRevision revision = SVNRevision.HEAD;