-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Major
-
Component/s: atlassian-bitbucket-server-integration-plugin
-
None
-
Environment:Jenkins- 2.204.5
BitBucket-Server-Integration Plugin: 1.1.0
-
2.0.0
When running a pipeline job using "pipeline script" instead of "pipeline script from SCM" with a script using the step bbs_checkout no build status information is sent to bitbucket.
Â
pipeline{
agent any
stages{
stage('scm'){
steps{
bbs_checkout ...
}
}
}
}
This limits me in my flexibility to use plugins such as https://plugins.jenkins.io/pipeline-multibranch-defaults/ or implementing a pipeline definition in a shared library.
Â