How should I expand Jenkins to help me release?
Pushing new Sparkle releases of our internal apps is a pain. I have to make the build, make the release notes file, sign the .zip with the private key, and add a new entry to the appcast file tying everything together.
Jenkins Paramerized Trigger + Copy Artifact
I’m working on setting up Jenkins to handle our release builds. A release build consists of a Windows installer that includes some binaries that must be built on Linux.
How to intercept concurrent login in Jenkins?
I’m looking for a way to prevent concurrent logins in Jenkins v2.440.3. Specifically, I would like to implement a restriction where, if an admin user logs in on one browser or tab, Jenkins would either:
Jenkins to automate deployment of ASP.NET applications
Is there any possibility to automate/semi-automate deployments of ASP.NET web applications using Jenkins. It can be under controlled or uncontrolled environments, for uncontrolled user needs to enter userid and password. I am looking out for ways to copy the files from target to destination and run sql scripts in web farm scenario.
analyze the pipeline of jenkins
analyze this script def purposingjobstatuscheck(oAuthToken, ing_cluster_dns, purposingCorrelationID ) request GET “https://api.uat.df.use1.gcp.efx/ing-uat-prod/contribution-tracker/correlation/id/${purposingCorrelationID}/status” –header “Authorization: Bearer ${oAuthToken}” >> purposingJobstatus.json “, returnStdout: true).trim()
sh “cat purposingJobstatus.json”
purposingoutput = readJSON file: “purposingJobstatus.json”
def purposingJobStatus= “${purposingoutput.output.purposingStatus.purposingJobs[0].status}”
echo “Status of purposing Job is ${purposingJobStatus}”
sh “rm purposingJobstatus.json”
return “${purposingJobStatus}”
Is this possible to configure Jenkins to clean up old build workspace data?
I believe our devops has properly configured Jenkins jobs to clean up and delete workspace data. I can see we have the following configuration
Is this possible to configure Jenkins to clean up old build workspace data?
I believe our devops has properly configured Jenkins jobs to clean up and delete workspace data. I can see we have the following configuration
Multiple workspaces created on Jenkins build nodes even when number of executors set to 1
I have a Jenkins set up with a single server (obviously) and two build nodes on two computers.
Jenkins server raises “Start request repeated too quickly.” on startup
Software Versions Software Version OS Ubuntu 17.0.12 Java OpenJDK 64-Bit (build 17.0.12+7-Ubuntu-1ubuntu224.04, mixed mode, sharing) Jenkins 2.470 Problem Statement I am trying to start a Jenkins service using the following command systemctl status jenkins However, when I run the aforementioned command it raises an exception and returns an error code. The exception message says “Start […]
How to get credentialsId from descriptor at the job level in Jenkins via the groovy console?
My goal is to update the credentials in the Bitbucket Notifier (=plugin) post-build action for a number of builds. The builds are using the old Freestyle project style (unfortunately).