| I observe the same issue, and I agree with Ben M's comment. My polling log continuously says (base URL replaced)
Started on Mar 30, 2020 5:38:00 PM
Workspace doesn't contain https://<base_url>/products/product_a/${CODE_REPO_SUB_LOC}. Need a new build.
Workspace doesn't contain https://<base_url>/products/product_a/${CODE_REPO_SUB_LOC}. Need a new build.
Done. Took 0 ms
Changes found
My svn repository contains products/product_a/trunk/ and products/product_a/trunk/tags/1.0.0. There is no difference between building trunk and a tag, so there is one job, Build_ProductA, to do that. That job is invoked from either:
- job Release_ProductA
with the parameter CODE_REPO_SUB_LOC set to /tags/1.0.0 And the build output is uploaded to a public nexus server
- job Snapshot_ProductA
with the parameter CODE_REPO_SUB_LOC set to /trunk And the build output is uploaded to a private stash
- SCM polling
with the parameter set to /trunk (from default)
Because of this bug, I have to have an extra separate job to avoid building when there are no changes. |