We have a custom Bamboo step plugin that we're using in our Jenkinsfile to 
call build plans on our Bamboo server from Jenkins.  I'm wondering if I 
should try to get hosting for it in the community repositories, as there 
doesn't seem to be anything else out there.  There's the Bamboo Notifier 
<https://plugins.jenkins.io/bamboo-notifier>, but it isn't specifically 
built for use with pipeline.

Here's an example usage from our Jenkinsfile:

pipeline {
    ...
    stages {
        stage("Build Bamboo job") {
            steps {
                script {
                    buildBamboo(projectKey: "PROJECT-KEY", planKey: "PKEY", 
serverAddress: 'https://bamboo-server', 'username': env.BAMBOO_USER, 
'password': env.BAMBOO_PASS)
                }
            }
        }
    }
    ...
}


Just curious.  Will pursue if it makes sense.  We have one for BuildForge 
as well.

Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/b9e91553-6511-4c60-9ff1-65fc7d3b761d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to