Brack indexing is basically a smart polling, and *should* be triggered off
scm notifications
However Subversion has not been updated in multibranch support for a good
while now.
On Fri 7 Sep 2018 at 02:42, Daniel Becroft wrote:
> Hi,
>
> I have a multi-branch pipeline setup to initiate a branch
Hi,
Am Donnerstag, 13. September 2018 17:07:28 UTC+2 schrieb Christopher List:
>
> We are running Jenkins as a windows service on win2012 machine, and it's
> working fine.
>
> The problem we have is that we're trying to change the service account
> that it is running under.
> The old and new s
Hi,
I successfully run following docker command locally:
docker run -it -v /usr/bin/qemu-arm-static:/usr/bin/qemu-arm-static
arm32v7/debian:jessie /bin/bash
But Jenkins has a default docker run command in the pipleline:
docker run -t -d -u 1000:1000 -w
/var/jenkins_home/workspace/jenkinsbuild
We are running the Jenkins service under another account (i.e. not the
Local System Account), and accessing our GitHub projects via ssh. The
private key is stored in Jenkins. I assume that's what you're doing too.
It's working fine here.
Are you sure the credential stored in Jenkins is actually
The message "Host key verification failed" is only reported by git when it
is using a private key for authentication. A personal access token is a
type of username/password, not a type of private key.
You may want to double check that the GitHub URL that you are using is an
https URL, not an ssh
*This is Steve Burrus again and even though it's been several edays si nce
I last posted I STILL have that problem with getting that login page when I
go to "http://localhost:[port num.]", which is attached. Is there any
"fresh ideas" from anyone as to how to FINALLY resolve this problem?*
--
You
Just upgraded from 2.89.2 to 2.131.3
I copied over the org.jenkinsci.plugins.configfiles.GlobalConfigFiles.xml
and reloaded the configuration from disk, but that didn't help.
Any clues?
--
You received this message because you are subscribed to the Google Groups
"Jenkins Users" group.
To uns
Hello,
I am trying to connect one windows agent with a jenkins server, where both
are in the same network, and that windows is at reach of jenkins server,
but still I am getting this error:
[image: Screenshot_3.jpg]
This windows can ping to jenkins.XXX.local without problem, but seems like
po
We are running Jenkins as a windows service on win2012 machine, and it's
working fine.
The problem we have is that we're trying to change the service account that
it is running under.
The old and new service accounts are both local admins on the machine.
When we change the service account, ev
Hi
You can use this function for pipeline
@NonCPS
def killthis_job() {
def jobname = env.JOB_NAME
def buildnum = env.BUILD_NUMBER.toInteger()
def job = Jenkins.instance.getItemByFullName(jobname)
for (build in job.builds) {
if (!build.isBuilding()) { continue; }
if (buildnum ==
Hi,
I'd like to build a project against different Linux distributions.
Using the chroot plugin, I can easily set up a chroot for each, but I
need to specify the name of the base image in the project config.
Can I somehow select the chroot base image by a label, so a matrix build
with "debian-str
Console Output shows the following issue
java.lang.NoClassDefFoundError: Could not initialize class
> sun.util.calendar.ZoneInfoFile
>
This is are the traces
Required context class hudson.FilePath is missing
Perhaps you forgot to surround the code with a step that provides this, such
as: node
I am having the same issue. Did you find the solution?
On Wednesday, December 24, 2014 at 12:28:26 PM UTC+1, nidhi singh wrote:
>
> Hi All,
>
> While running sonar analysis in jenkins, m facing few issues
>
> Failed to instantiate [ch.qos.logback.classic.LoggerContext]*16:47:42*
> Reported except
*I have a RELEASE pipeline which triggers a parameterized job: TEST (which
can be triggered standalone too). If the TEST job fails I can rerun it
rather than triggering the complete RELEASE job. Is there a way I can list
the rerun of the TEST job to the upstream release job? So that the
trigger
We're having a significant issue with our Jenkins env. Our Jenkins setup is
running in Kubernetes, and sometimes the master is no longer able to
provision new nodes, and the existing nodes don't disconnect.
We're using 1.10.1 of Kubernets plugin, and Jenkins version is 2.121.2, and
running in
Hi!
This is partly answering my own question:
Install the plugin you want to try.
Run the script
Jenkins.instance.pluginManager.plugins.each{
plugin ->
println ("${plugin.getDisplayName()} (${plugin.getShortName()}):
${plugin.getVersion()}")
}
Locate the short name of the plugin you want
Hi!
I am creating a Jenkins installation from a Dockerfile. I want to
specify all plugins so they are available when the image is built.
This typically looks like many lines like this:
RUN /usr/local/bin/install-plugins.sh greenballs
Is there a way to find the proper name for each plugin? I am
17 matches
Mail list logo