Hello
did you get the solution to this error? I'm currently battling with the
same error
On Saturday, 3 March 2018 15:07:07 UTC+1, Poovaraj Thangamariappan wrote:
>
> Hello,
>
> I have created *manual* user in Manger User and I have configured in
> Matrix-based
> security. It is showing Manu
Hello,
I've seen the following behaviour (for reasons that I won't delve into
unless you feel they are relevant):
- webhook for repo that used to have an active/enabled webhook
automatically re-enabled
- doing so triggers all sorts of old builds, including for Jenkins
hostnames that are no l
uter/Slave, or something to explain how this works?
Thanks,
Joe
--
You received this message because you are subscribed to the Google Groups
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to jenkinsci-users+unsubscr...@googlegrou
> [Pipeline] }
> [Pipeline] // node
> [Pipeline] End of Pipeline
> ERROR: script returned exit code 1
> Finished: FAILURE
On Thursday, March 8, 2018 at 11:17:10 AM UTC-6, Joe Cavanaugh wrote:
>
> Yep - the middle section of the first post is when I ran directly as the
> use
:31:45 AM UTC-6, slide wrote:
>
> Have you tried running the same command in powershell directly to see if
> the behavior is just powershell itself?
>
> On Thu, Mar 8, 2018 at 8:20 AM Joe Cavanaugh > wrote:
>
>> bat 'yarn install' works fine. It seems that the
bat 'yarn install' works fine. It seems that the powershell key word does
not work correctly in declarative pipelines consistently.
On Thursday, March 8, 2018 at 9:02:38 AM UTC-6, Joe Cavanaugh wrote:
>
> I didn't post the error message :
>
> ERROR: script retu
I didn't post the error message :
ERROR: script returned exit code 1
Finished: FAILURE
On Wednesday, March 7, 2018 at 4:51:41 PM UTC-6, Joe Cavanaugh wrote:
>
> stage('Build') {
> steps {
> powershell '''
>
stage('Build') {
steps {
powershell '''
Write-Output "Starting Yarn Install"
try {
\$ErrorActionPreference = 'Stop'
yarn install
} catch {
Write-Output "Install failed : \$PSItem"
}
You have to have the declarative pipeline 1.2 or higher to do this. I am
having issues putting the "powershell" keyword in the library... otherwise
it seems to work.
On Thursday, January 11, 2018 at 1:41:50 AM UTC-6, Idan Adar wrote:
>
> Indeed possible. See blog post:
> https://jenkins.io/blo
Anyone else encountering this issue?
--
You received this message because you are subscribed to the Google Groups
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on t
I can now confirm the standard bat 'echo Hello World' works fine - it is
just the powershell keyword that is an issue.
--
You received this message because you are subscribed to the Google Groups
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an e
Forgot to mention - the version of Jenkins is 2.98 with all the latest and
greatest plugin versions (I just updated yesterday 12/28/2017). It is a
windows master build machine running powershell 3.0 and I haven't tested on
a powershell 5.1 machine yet.
--
You received this message because yo
I noticed in the example they are using only shell scripts and I am
making a test for bat files as well. I'm wondering if anyone else is seeing
this issue with attempting to make pipeline libraries.
Thanks,
Joe
--
You received this message because you are subscribed to the Google G
Note - To make what Colin did work, you must be using declarative pipeline
1.2 or higher which has its own list of dependencies. I didn't realize this
right away.
On Monday, October 16, 2017 at 12:03:26 PM UTC-5, Colin Bennett wrote:
>
> The workaround of use the 'tool' function in the environm
Agree with Devin above, and would highly suggest against setting up the
Master Jenkins server and Sonarqube together - I ran into scaling problems
rather quickly (like within 6 months as people got wind of the Jenkins and
Sonar servers). Migrating Jenkins is pretty easy though, so for the
purpo
I don't know if I fully understand your question... but here is something I
did to solve getting scripts for execution in RepoA from repo's B,C,D... I
now know the specific directories to execute the scripts from and the files
that needed to be updated for Puppet.
If you find a better way or t
I've used a modified version of the scripts found on
https://support.cloudbees.com/hc/en-us/articles/217630098-How-to-access-Changelogs-in-a-Pipeline-Job-
to great success by putting them as @NonCPS on the bottom of my declarative
pipeline. Just recently I have moved the script to a global libr
step([
$class: 'XUnitBuilder', testTimeMargin: '3000', thresholdMode: 1,
thresholds: [
[$class: 'FailedThreshold', failureNewThreshold: '', failureThreshold: '0',
unstableNewThreshold: '', unstableThreshold: ''],
[$class: 'SkippedThreshold', failureNewThreshold: '', failureThreshold: '',
unstabl
Hi guys,
Iam not able to trigger a jenkins job , whenever I make a pull request in
bitbucket but I am able to trigger Jenkins job whenever there is commit in
bitbucket branch.
I tried "BitBucket pull request builder" plugin, to achieve this but not
able to succeed.
Any help will be appreciat
Hi,
Iam a newbie to Jenkins and Iam looking for help on this issue.
My requirement is to create a nightly build Jenkins job, which should do
the following.
1.Create Temp branch from a Dev_main Branch
2.Merge Temp Branch with One Candidate* Branch
3.Build
4.Run UI Tests
5.On Success : Merge cand
Carlos,
This Plugin clearly doesn't work Please provide a detailed how to at
least rather on how this works.
This is turning out to be a complete waste of time.
Joe
On Monday, December 19, 2016 at 7:44:43 AM UTC, Carlos Sanchez wrote:
>
>
>
> On Tue, Dec 6, 2016, 22:
After some more tests it looks like the problem affects pipeline jobs but
not freestyle jobs.
I guess this is a bug so have raised a jira
https://issues.jenkins-ci.org/browse/JENKINS-41085
On Wednesday, 11 January 2017 09:59:46 UTC, Joe wrote:
>
>
> Hi all,
>
> I want to r
Hi all,
I want to run some scripts externally that require that all jobs are
stopped.
I expected the following command to stop new jobs being started, and only
return once all the jobs in the queue have finished (or reached the end of
a stage for pipeline and paused):
java -jar jenkins-cli.ja
Sure can and just did, thank you.
On Monday, March 28, 2016 at 1:35:26 PM UTC-4, slide wrote:
>
> Can you file an issue in JIRA at https://issues.jenkins-ci.org?
>
> On Mon, Mar 28, 2016 at 9:54 AM Joe Fradley > wrote:
>
>> Hello,
>>
>> I have a job that has
Hello,
I have a job that has a lot of unit tests ~30,000. When it gets to the
point of parsing the the produced *trx file I get a 'No more DTM IDs are
available' error. Any suggestions on a solution would be appreciated. I
could break my unit tests across different jobs, but I'd rather not. My
nto Jenkins. I
suppose this will be the fall-back if I can't figure this out using a
system groovy script
The Jenkins DSL plugin doesn't support credentials as far as I know.
Thanks,
Joe
On Monday, December 21, 2015 at 3:00:25 PM UTC-7, Joe Ferr wrote:
>
> We use the gradle/g
cript.
thanks,
Joe
--
You received this message because you are subscribed to the Google Groups
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the w
I have a workflow job with one Parameter defined in the job: (actually
have additional, just stripped them out for this.I can not seem to get
these Parameters to show up in the slave's script when it runs.
Joe=99
In the Groovy script that I run stripped down to the bare bones:
I was at the Jenkins User Conference in Santa Clara and stopped at the
Cloudbee's helpdesk cube they had there. I discussed the need to:
1) Do a set of jobs that do the same process on multiple systems.
(Currently using a Matrix job).
2) When all have completed, select one machines that was
y to accomplish this?
Thanks
Joe
--
You received this message because you are subscribed to the Google Groups
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this di
Hi am running a test in Jmeter with the jmeter perfmon metrics collector
plugin enabled via Jenkins.. Post test completion i can view the
Performance results using performance Plugin.But how to view the perfmon
metrics collector graph and stats in Jenkins dashboard???
--
You received this mess
Getting the same thing, did you have any luck?
On Tuesday, February 11, 2014 10:05:17 AM UTC-8, Gytis Greitai wrote:
>
> I have Jenkins under firewall and private organization repository on
> github.
>
> I would like to setup Amazon SQS to trigger builds, everything seems to be
> ok, but the bu
Jenkins has been working well for several years building many projects.
Now we are getting a build failure on a project.
It was doing -
workspace -delete
workspace -new
workfold -map
workspace get
Now it does only
workspace get
and decides all files are up to date, so it gets nothing,
Hi,
I'm trying to create an Ivy build project in Jenkins to build part of our
application, and things don't seem to be behaving as I would expect.
I have several modules in my workspace with a layout similar to below:
- project_build
- build.xml
- ivysettings.xml
- build.properties
- mod
FYI, i found my answer here:
https://groups.google.com/forum/#!searchin/jenkinsci-users/scm$20polling/jenkinsci-users/xLXpSPsIAps/WbXPBI40DkgJ
Joe
On Tuesday, February 4, 2014 6:08:13 PM UTC-8, Joe Mihalich wrote:
>
>
>Hi,
>
> I just installed a new jenkins instance ru
do i have to do to get it to show? I have all the same plugins
installed, but no jobs configured yet.
Thanks,
Joe
--
You received this message because you are subscribed to the Google Groups
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, sen
36 matches
Mail list logo