Questions tagged [jenkins-blueocean]

Blue Ocean is a [now abandoned] next generation user experience for Jenkins, Blue Ocean, a revamped user interface for the Jenkins CI/CD (continuous integration/continuous delivery) server. Use this tag for questions referring to the Blue Ocean plugin for Jenkins.

Blue Ocean is an essentially abandoned initiative to overhaul the Jenkins UI to support a better pipeline experience.

Blue Ocean Documentation (Jenkins Book), Installation Plugin. Gitter support

Designed from the ground up for Jenkins Pipeline, but still compatible with Freestyle jobs, Blue Ocean reduces clutter and increases clarity for every member of the team.

Key components such as the Pipeline Graph View have been excised and delivered as standalone plugins.

192 questions
75
votes
8 answers

Jenkins Pipeline sh display name/label

With Jenkins 2 Pipeline plugin, there's a useful feature allowing a quick overview of the pipeline stages and status of steps, including logging output. However, if you use the "Shell script" (sh) step, there doesn't seem to be a way to label that…
28
votes
5 answers

Matrix configuration with Jenkins pipelines

The Jenkins Pipeline plugin (aka Workflow) can be extended with other Multibranch plugins to build branches and pull requests automatically. What would be the preferred way to run multiple configurations? For example, building with Java 7 and Java…
giorgiosironi
  • 1,077
  • 1
  • 11
  • 18
20
votes
7 answers

Where is the Blue Ocean pipeline editor?

Where is the pipeline editor located within the Blue Ocean Jenkins plugin? I can see my pipeline jobs, and when clicking into these I cant see any links\buttons that take me to the editor. I'm sure in previous beta releases I could get to it, but…
mindparse
  • 6,115
  • 27
  • 90
  • 191
19
votes
5 answers

How can I force Jenkins Blue Ocean to display print output instead of "Print Message"?

In the below screenshot some debug entries display the output text (with - Print Message at the end) while others simply display Print Message. To view these you have to expand the step to see the output. All lines are using the format print "TEXT…
Caesar Kabalan
  • 753
  • 1
  • 8
  • 18
18
votes
1 answer

No "Build Triggers" option for Blue Ocean pipeline

I have researched this issue a lot and cannot find an answer to that, so I have setup a simple project on Jenkins before and I get all the perks of the "Build Triggers" tab where I can select exactly what could trigger the project build (for example…
Blizzard
  • 1,117
  • 2
  • 11
  • 28
17
votes
3 answers

Jenkins multibranch pipeline only for subfolder

I have git monorepo with different apps. Currently I have single Jenkinsfile in root folder that contains pipeline for app alls. It is very time consuming to execute full pipeline for all apps when commit changed only one app. We use GitFlow-like…
mrzodiak
  • 467
  • 2
  • 7
  • 16
17
votes
4 answers

Multibranch pipeline job not showing open pull requests

I have configured a multibranch pipeline job in Jenkins linked to our GitHub repo which is working nicely, feeding back the status of checks to the pull request in our GitHub so we know if the branch is good for merging in. What I don't see are any…
mindparse
  • 6,115
  • 27
  • 90
  • 191
16
votes
4 answers

How can I have unique build numbers across branches with Jenkins & the Pipeline Multibranch Plugin

We are using Jenkins Pipeline Multibranch Plugin with Blue Ocean. Through my reading, I believe it is quite common to tie your project's build number to the Jenkins run, as this allows traceability from an installed application through to the CI…
pingu
  • 8,719
  • 12
  • 50
  • 84
15
votes
5 answers

Jenkins blue ocean change github access token

Jenkins blue ocean pretty cool continuous integration tool, but I faced the following problem: At the main page, as was asked, I inserted my GitHub access token And after that I realized that was incorrect token from another company. And now I…
Ivan Talalaev
  • 6,014
  • 9
  • 40
  • 49
13
votes
2 answers

How to fix 'script returned exit code 1' when running Jenkins pipeline

I am defining a pipeline using Jenkins Blue Ocean. I'm trying to do a simple python pep8 coding convention, but if I go inside the shell and type the command directly, it runs fine. But when the same command is executed in the pipeline, it is…
윤태일
  • 537
  • 1
  • 9
  • 21
12
votes
2 answers

Get Log for each Jenkins pipeline stage

Anyone know how I can get the separate logs (for each pipeline stage) as the Blue Ocean shows. I need to attach them to Jira but I can not find them. Any idea?
Alessandra Dias
  • 161
  • 1
  • 2
  • 7
12
votes
1 answer

Use Jenkins REST API to resume a paused pipeline?

I have a Jenkins declarative pipeline with an input prompt. stage('Approval') { when { branch "qa" } input { message "Approve release?" ok "Yes" parameters { string(name: 'IS_APPROVED',…
Learner
  • 2,459
  • 4
  • 23
  • 39
11
votes
1 answer

Is there a way to tell Blue Ocean that build descriptions are html?

We're generally switching from using Freestyle to pipeline projects, and as part of that are using Blue Ocean on a regular basis. For the classic view, we generate html job descriptions that point back, for example, to merge requests in the gitlab…
johnfo
  • 1,676
  • 2
  • 17
  • 28
11
votes
1 answer

Jenkins Blue Ocean editing commit, message and changes

I have a Jenkins pipeline that doesn't use git. I would LOVE to use Blue ocean as an interface for the developers and QA members but since I'm not using git the interface is limited. If I could edit the commit and message section it would take me…
Eddie
  • 1,081
  • 2
  • 12
  • 28
10
votes
1 answer

What are "Branch indexing" activities in Jenkins BlueOcean

I'm setting a Multi-Branch pipeline in jenkins blue ocean. Everything is starting to work nice. One thing I've noticed is that once a while, I get an execution of the job named: "Branch indexing" running. My build contains some heavy unit testing…
J4N
  • 19,480
  • 39
  • 187
  • 340
1
2 3
12 13