Jesper Rønn-Jensen
Jesper Rønn-Jensen

Reputation: 111616

How to discover Jenkinsfile in subfolders

I have a project with two folders, that are independent, and needs separate builds in Jenkins (running v2.74)

My structure is

folder
├── project1
│   └── Jenkinsfile
└── project2
    └── Jenkinsfile

When I click "scan organization" in Jenkins, it doesnt discover the Jenkinsfiles in subdirectories.

Here is a sample from the "Scan organization log":

Proposing kg-pipeline
Examining my-test-project

  Checking branches...

  Getting remote branches...

    Checking branch jenkins
      ‘Jenkinsfile’ not found
    Does not meet criteria

    Checking branch master
      ‘Jenkinsfile’ not found
    Does not meet criteria

  2 branches were processed

Finished examining my-test-project

I didnt touch the configuration of the job that scans the organization and finds branches with Jenkinsfiles. Here is the current setting for the project

Jenkinsfile discoverability configuration

My question is: How do I configure Jenkins to see each folder individually? I am also interested in links to example projects set up this way.

Upvotes: 10

Views: 16442

Answers (3)

Gunjan
Gunjan

Reputation: 1

You can add more than one "Pipeline Jenkinsfile" under Project Recognizers with your paths to Jenkins files.

Upvotes: 0

Ray Kim
Ray Kim

Reputation: 1961

There is a simple solution.

  1. go to JENKINS_URL/job/JOB_NAME/configure
  2. under Build Configuration, select by Jenkinsfile for Mode
  3. under Script Path, set it to DIR_NAME/Jenkinsfile

For instance, if you had your Jenkinsfile inside a src directory, then you would set it to src/Jenkinsfile and Jenkins will be able to find the Jenkinsfile now

Upvotes: 16

Martin
Martin

Reputation: 139

Currently trying to set up the same thing - this might help, even though it's not a complete answer:

According to this you should be able to setup two Multibranch Pipeline Projects, each with the configuration Mode "by Jenkinsfile".

Support for using custom paths for the Jeninsfile was added in JENKINS-34561

Upvotes: 1

Related Questions