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
6
votes
1 answer

Migrate from Jenkins Multijob to Pipeline plug-in

Currently we are using Jenkins CI 1.643 (I believe) with the Multijob plugin and Job DSL. A collection of jobs is generated using Job DSL, as well as a multijob that contains all the other jobs in a specific order (build, analysis, unit test,…
Arno Moonen
  • 1,134
  • 2
  • 10
  • 28
5
votes
0 answers

Jenkins Declarative Pipeline log a warning message that is visible in Blue Ocean

Is it possible to create a warning log message in Jenkins Blue Ocean view like the unstable(MESSAGE) warning message, but without setting the hole build state as unstable? I mean the yellow/orange log message in this view "Couldn't load…
5
votes
0 answers

process apparently never started in /home/jenkins/workspace/developer-console@tmp/durable-28a71889

All aver the internet I didn't find a solution. I'm learning this tutorial about how to build a node.js and React app with Jenkins : https://jenkins.io/doc/tutorials/build-a-node-js-and-react-app-with-npm/#fork-sample-repository During the build, I…
Teddy Kossoko
  • 1,168
  • 3
  • 20
  • 48
5
votes
1 answer

Blue Ocean missing branch/commit info

I have a Pipeline job that has a parameter for the BRANCH_NAME to specify which branch to build from my bitbucket repo. I use this in the Branch Specifier as ${BRANCH_NAME} in the pipeline definition (Pipeline script from SCM). The builds run fine,…
Brandon
  • 225
  • 4
  • 12
5
votes
1 answer

Get build steps using Jenkins Pipeline REST API

I would like to ask is there any way to query run time build steps by using Jenkins pipeline REST API? I refer to this link https://github.com/jenkinsci/pipeline-stage-view-plugin/tree/master/rest-api and it seems like I can't get a run time build…
IAMbeginner
  • 269
  • 1
  • 3
  • 14
5
votes
1 answer

Blue Ocean - How Do I Track Pull Requests AND the Master Branch

I'm using Blue Ocean against Bitbucket Server. I want a new build to occur: When a Pull Request is created or updated When master is updated (basically, when a PR is merged to master) It appears that I can do the first by choosing "Discover…
Craig Riecke
  • 121
  • 1
  • 6
5
votes
2 answers

Cant open Blue Ocean visual pipeline editor

Recently I installed Blue Ocean plugin, but I can't find out how to edit or create pipeline using plugin's UI. When I create new pipeline in Blue Ocean and connect with GitLab repo, I don't have option to create/edit pipeline (Jenkinsfile file). No…
Quilir
  • 414
  • 5
  • 19
5
votes
1 answer

How to use a jenkins multibranch pipeline with a monorepo

I have a project in a monorepo with 2 artifacts : a frontend and a backend. my-project frontend Jenkinsfile backend Jenkinsfile I'd like to use Blue Ocean and multibranch pipeline but is there a way to use two Jenkinsfile and two…
4
votes
0 answers

Cannot expand steps or see logs in Blue Ocean after Jenkins upgrade to 2.303.2

we recently upgraded Jenkins to version 2.303.2. We also upgraded the below listed Blue Ocean plugins. As we do not have the main Blue Ocean plugin installed, we upgraded all the compatible Blue Ocean related plugins seperately. There are few Blue…
Omkar
  • 71
  • 3
4
votes
1 answer

Jenkins dynamic Pipeline not showing all stages in BlueOcean

I have a Jenkins pipeline script with the key pieces shown below. Everything seems to be executing in the background but is not showing on BlueOcean. Am I doing something wrong or it is some kind of bug on the UI? def projects = [ [name: 'API',…
javydreamercsw
  • 5,363
  • 13
  • 61
  • 106
4
votes
2 answers

Sequential stages inside parallel in Scripted Pipeline syntax

In my Jenkinsfile I execute 2 stages in parallel and one of these stages would consist of few other sequential stages. When I run the script and check the pipeline in BlueOcean, that sequence of stages is represented as one single node. The…
4
votes
1 answer

Jekins sh label: Arguments to "sh" must be explicitly named

I'm aware of Jenkins Pipeline sh display name/label But when using sh "echo foo", label: "my step" I'll get the following error: Arguments to "sh" must be explicitly named I made sure to have Pipeline: Nodes and Processes v2.28 installed and I'm…
Nils
  • 382
  • 3
  • 12
4
votes
1 answer

Jenkins Multibranch Pipeline: How to checkout only once?

I have created very basic Multibranch Pipeline on my local Jenkins via BlueOcean UI. From default config I removed almost all behaviors except one for discovering branches. The config looks line follows: Within Jenkinsfile I'm trying to setup…
Vitaljok
  • 594
  • 1
  • 6
  • 13
4
votes
1 answer

How to add icons to Jenkins Blue-Ocean Pipelines Stages and Parameters form?

How can we make visual updates to the Pipelines and Parameter forms? Pipeline I'd like to add visual representation on each of the steps Maybe add an icon to the descriptions Show the stage names in bold or other ways to highlight Parameters…
Marcello DeSales
  • 21,361
  • 14
  • 77
  • 80
4
votes
3 answers

Limit which branch is built by Jenkins pipeline?

I am currently configuring a Jenkins server hosted on a Docker container in AWS. I am using BlueOcean to configure a repository. Right now, the pipeline scans all branches on a repository to detect Jenkinsfiles and then will automatically build on…
1 2
3
12 13