Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Blocker
-
Resolution: Fixed
-
Component/s: blueocean-plugin
-
Labels:None
-
Similar Issues:
-
Epic Link:
-
Sprint:Blue Ocean - Candidates
Description
I get the following message in the log:
--: reference to Bitbucket/cvltk/PR-4 #9 being saved from unexpected /var/lib/jenkins/jobs/Bitbucket/jobs/cvltk/branches/PR-4/builds/9/workflow/4-parallel-synthetic.xmlJENKINS-45892
I'm doing some tricks to build in parallel on multiple different nodes, maybe that is the cause. Condensed example Jenkinsfile:
platforms = [ "gcc4.8-linux64": [nodeMatcher: 'linux64', config: "linux-gcc4.8"], ] @NonCPS def generateBuilds() { def builds = [:] for (p in platforms) { def name = p.key def platform = p.value builds[p.key] = { build(name, platform) } } return builds } def build(name, platform) { node(platform.nodeMatcher) { stage("Build ${name}") { echo "Hello, World for ${platform.config}!" } } } parallel generateBuilds()
Attachments
Issue Links
- is related to
-
JENKINS-45892 Forbid nested references to model objects
-
- Resolved
-
- relates to
-
JENKINS-47736 JEP-200: Switch Remoting/XStream blacklist to a whitelist
-
- Resolved
-
-
INFRA-1431 Out of disk space on root partition on ci.jenkins.io
-
- Closed
-
- links to
- mentioned in
-
Page Loading...
FYI Michael Neale and James Dumay - this is causing major problems on ci.jenkins.io due to the logspam that gets generated. Don't know if it's causing other problems beyond the logspam, but it's filling the disk every couple days, which is bad, obviously. This needs to get fixed ASAP.