-
New Feature
-
Resolution: Duplicate
-
Minor
-
None
-
Jenkins 2.46.1
Blue Ocean 1.0.1
pipeline-editor 0.2.0
After watching the "getting started with pipeline" on YouTube, I was excited to try this in our enterprise. However, the only time I'm able to edit the pipeline within the GUI, is if it's a GitHub account. Even when I have a Jenkins file at the root with the following code, it claims that I do not have a Jenkinsfile in my repo. However, when I switch back to classic view, the job is there, but again, I cannot edit via the GUI:
```
pipeline {
agent any
stages {
stage('') {
steps {
sh '''. /etc/profile
minds'''
}
}
}
}
```
I would like to be able to have this ability with any Git repository. We are currently using Atlassian's Bitbucket enterprise.
- duplicates
-
JENKINS-43148 Support native Git for pipeline creation and editing
- Resolved