I'm experiencing the same issue that was supposed to be resolved by
https://issues.jenkins-ci.org/browse/JENKINS-29280
Our environment is
Jenkins 2.32.3 on CentOS
ActiveDirectory plugin 2.3
Chrome browser ver 56.0.2924.87
The workaround is to manually edit the username in config.xml and resta
What's declarative syntax?
On Wednesday, February 15, 2017 at 11:48:22 AM UTC-8, pbeatty wrote:
>
> Is "parallel" valid to use in declarative Jenkinfile syntax or is it only
> availabl Scripting syntax?
>
> Pat
>
--
You received this message because you are subscribed to the Google Groups
"Jen
Is it possible to reset the build ID? I believe there's a plugin to
increase the build ID, but not to reset it to a lower number. It might be a
useful feature to be reset it when starting a new release of a product.
--
You received this message because you are subscribed to the Google Groups
Pipelines really help in coordinating multiple tasks to be run on multiple
hosts, sequentially and even concurrently. Have you considered this? The
old Jenkins way of define multijobs would be cumbersome so I suggest
looking into pipelines. Another option is something like ansible, though in
pr
>From my experience, having multiple pipeline jobs polling for changes
causes confusion from the end-user. It seems better to have one "master"
job that polls and runs all the other builds. Also it seems Jenkins jobs
(including pipeilnes) are quite happy to build concurrently, but I don't
know
Maybe you can configure the 'quiet period'? The default is set in the
configuration screen, but you can also set it per job configuration.
On Tuesday, December 13, 2016 at 9:48:46 PM UTC-8, Christoffer Holmstedt
wrote:
>
> Hi
> I'm running a Jenkins server, latest 2.19 LTS release with a few pip
I find that using the jenkins-cli was the best option to give me the status.
https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+CLI
On Wednesday, December 14, 2016 at 2:10:25 PM UTC-8, Katta Vijay wrote:
>
> I was trying to implement jenkins remote api to initiate build and return
> the build
I configured my Jenkins pipeline job to read my pipeline script from SCM.
In my pipeline I do an scm checkout on a slave node. As a result, I have
code checked out both on the master node and the slave node, and whenever
the Jenkins job is run, it actually reads the pipeline script on the master
Is it possible to attach files to notifications sent from a pipeline? I'm
interested in using slack or hipchat as documented at
https://jenkins.io/blog/2016/07/18/pipline-notifications. I like
notifications, but I'm trying to think of a way to let users know about
many aspects (artifacts) of ou
Hi,
Eventually I ended up building periodically and checking for SCM changee
manually in each repository manually. It took some work, but I didn't want
to define multiple jobs just for polling.
Taro
On Tuesday, October 18, 2016 at 2:44:22 PM UTC-7, Rachel Moreno wrote:
>
> Hi,
>
> Sorry, it's
Frequently my pipeline build lists duplicate commits in the "Stage View". I
just select my job (which is a pipeline) and look at the jobs listed in
"Stage View". When I hover over the dark gray box that lists all the
commits that went into the build often see duplicate revision numbers.
I use
Perhaps the following snippet is something that you are looking for:
node {
stage('Build') {
build job: 'test-a', propagate: true
build job: 'test-b', propagate: true
}
}
By default propagate is set to true, so this is just to illustrate that you
can ignore errors and
I have a pipeline which does a maven build. During the integration test
phase I invoke another Jenkins job.
Is there a way to expose parts of the build process while I'm inside a
Maven build?
// Jenkinsfile
node {
stage(‘Compile’) {
sh ‘mvn clean install’
}
}
// pom.xml
…
Is it possible to poll for changes from both svn and git repositories from
within a pipeline job? In Jenkins, pipeline scm configuration is tied to a
particular scm type (due to a radio button), but I would like to poll both
svn and git at the same time. As a result of the poll detecting an scm
In my pipeline stage view, I aways see two commits even though I have only
committed once. I think the problem is because:
1) It is a scheduled job
2) The pipeline itself checks out the code
Ideally the schedule would be in the pipeline, but I don't think that's
possible.
I am using pipeline
When I inspect my Jenkins pipeline job, I always see duplicate entries in
the Changes view. It may be happening because:
i) I have polling enabled, so that the job kicks off if there are any
checkins with a time period
ii) The pipeline job checks out the code on a build node and does a build
Qu
16 matches
Mail list logo