In Jenkins display the directories from gitlab repo in build with parameters as a drop down

Viewed 14
    agent { label 'jenkins-slave' }

    environment {
        CRED_REPO_URL = 'gitcredentials.git'
        SERVICES_REPO_URL = 'gitrepo'
        ENV_NAME = 'dev_dev'
        REGION = 'ap-south-1'
    }

    parameters {
        choice name: 'ENV', choices: ['dev', 'qa'], description: 'Choose an env'
        choice name: 'DIRS', choices: choiceArray, description: 'Choose a dir from branch'
        gitParameter branchFilter: 'origin/(.*)', 
                    tagFilter: '*', 
                    defaultValue: 'main', 
                    name: 'BRANCH', 
                    type: 'BRANCHTAG', 
                    quickFilterEnabled: 'true',
                    description: 'branch to execute',
                    useRepository: 'gitrepo'
    }
}

facing some issue.so need to assist for this while select the branch in jenkins it has to shown that repo directories as a drop down.

0 Answers
Related