Re: withDockerContainer in pipeline failing

2019-07-26 Thread Ted Kossoko
Hi, did you find a solution ? I'm facing the same problem. How did you correct it ? Le mardi 25 juin 2019 23:52:51 UTC+2, NARASIMHAMURTHY G N a écrit : > > Hi All, > > i have also facing Jenkins Deployment issue. could you possible to help > me to this issue, this error is looks similar to ab

Re: Is it possible to build and test 50 similarly named Github repos with a singe job?

2018-08-05 Thread Ted Cowan
talk about) but i will go with my Generic Trigger solution until I my requirements force me in a different direction. ...ted On Fri, Jul 20, 2018 at 6:25 AM, Jan Monterrubio wrote: > This definitely sounds like what Mark suggested. If you set up the GitHub > service and webhook, Jenkins ca

Re: Publish over CIFS configuration

2017-09-05 Thread Ted
mbclient connection. He suggested that there are some Java libraries that may support protocols above SMB1 (e.g. smbj), but for now that is what we've run into. I will be looking into alternative ways to publish my builds. On Tue, Sep 5, 2017 at 5:22 PM Ted wrote: > this is the

Re: Publish over CIFS configuration

2017-09-05 Thread Ted
an find in the code. > > > On Sat, Sep 2, 2017 at 12:02 PM Slide wrote: > >> I and on the jenkins irc channel, though not at the moment or today most >> likely. If you get on there look for slide-o-mix >> >> On Sat, Sep 2, 2017, 09:11 Ted wrote: >> >

Re: Publish over CIFS configuration

2017-09-02 Thread Ted
is there a live chat we can do? irc or something? I'd even be willing to screen share if necessary. On Sat, Sep 2, 2017 at 12:09 PM Slide wrote: > Ok, I'll try and get something up soon with some additional logging. > > On Sat, Sep 2, 2017, 08:43 Ted wrote: > >> I&

Re: Publish over CIFS configuration

2017-09-02 Thread Ted
can't figure out what the problem is. Would you be > willing to do that? What is in the logs when Jenkins crashes completely? > > On Sat, Sep 2, 2017, 08:11 Ted wrote: > >> nothing on that log either, though it didn't crash this time. >> >> On Sat, Sep 2, 2017 a

Re: Publish over CIFS configuration

2017-09-02 Thread Ted
nothing on that log either, though it didn't crash this time. On Sat, Sep 2, 2017 at 10:57 AM Ted Winslow wrote: > Nope. Nada. I can tell you that I have tested a bit more. When I add the > functionality anyway (in spite of the errors) running the build results in > a cr

Re: Publish over CIFS configuration

2017-09-02 Thread Ted Winslow
his plugin, I am not super familiar > with it yet. Is there anything in the Jenkins logs? > > On Tue, Aug 29, 2017, 13:29 Ted Winslow > > wrote: > >> Bump. Anybody? >> >> >> On Saturday, August 26, 2017 at 12:24:05 AM UTC-4, Ted Winslow wrote: >>&g

Re: Publish over CIFS configuration

2017-08-29 Thread Ted Winslow
Bump. Anybody? On Saturday, August 26, 2017 at 12:24:05 AM UTC-4, Ted Winslow wrote: > > I don't seem to be understanding the configuration of the Publish over > CIFS plugin. > > I installed the plugin and am trying to add a CIFS node to no avail. It > is showing ever

Publish over CIFS configuration

2017-08-25 Thread Ted Winslow
I don't seem to be understanding the configuration of the Publish over CIFS plugin. I installed the plugin and am trying to add a CIFS node to no avail. It is showing every field as invalid as I look at the configuration page, which I am guessing is not relevant. I am trying to publish to ano

Re: downloading files > 1G

2017-03-05 Thread Ted Xiao
Are your jenkins server behind NGINX, see also http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_max_temp_file_size On Saturday, March 4, 2017 at 8:51:22 AM UTC+8, Daniel Beck wrote: > > > > On 03.03.2017, at 22:32, Richard Ginga > wrote: > > > > I have been struggling all day wi

Re: Description of memory sharing between master and slaves in pipelines?

2016-12-29 Thread Ted Xiao
More info https://wiki.jenkins-ci.org/display/JENKINS/Making+your+plugin+behave+in+distributed+Jenkins On Thursday, December 29, 2016 at 10:24:12 PM UTC+8, Ted Xiao wrote: > > just serialize and deserialize, it is one-way only, check out > https://github.com/jenkinsci/remoting/blob/m

Re: Description of memory sharing between master and slaves in pipelines?

2016-12-29 Thread Ted Xiao
just serialize and deserialize, it is one-way only, check out https://github.com/jenkinsci/remoting/blob/master/src/main/java/hudson/remoting/UserRequest.java If you want data shared among slaves, check out http://jgroups.org/javadoc4/org/jgroups/blocks/PartitionedHashMap.html On Thursday, Dece

Re: Consolidated Test case reports of selected successful Jenkins jobs

2016-12-19 Thread Ted Xiao
Declaimer: I work for Splunk and those options represent my own and not those of my employer. You can archive the goal but REQUIRE additional software. https://splunkbase.splunk.com/app/3332/ https://wiki.jenkins-ci.org/display/JENKINS/Splunk+Plugin+for+Jenkins You can obtain a free license with

Re: Consolidated Test case reports of selected successful Jenkins jobs

2016-12-19 Thread Ted Xiao
Declaimer: I work for Splunk and those options represent my own and not those of my employer. You can archive the goal but REQUIRE additional software. https://splunkbase.splunk.com/app/3332/ https://wiki.jenkins-ci.org/display/JENKINS/Splunk+Plugin+for+Jenkins You can obtain a free license with

Re: Getting the remote IP of the client which triggered a build

2016-11-22 Thread Ted Xiao
tion.class)) { for (Cause cause : action.getCauses()) { if(cause instanceof RemoteCause){ ipaddress=cause.addr break; } } } return ["ip":ipaddress] then access the variable $ip in shell script On Wednesday, November 23, 2016 at 11:58:55 AM U

Re: Getting the remote IP of the client which triggered a build

2016-11-22 Thread Ted Xiao
javadoc for RemoteCause.getAddr() http://javadoc.jenkins.io/hudson/model/Cause.RemoteCause.html#getAddr() On Wednesday, November 23, 2016 at 11:56:27 AM UTC+8, Ted Xiao wrote: > > You call access it by RemoteCause, pseudo code: > > > for (CauseAction action : build.getActions(Ca

Re: Getting the remote IP of the client which triggered a build

2016-11-22 Thread Ted Xiao
You call access it by RemoteCause, pseudo code: for (CauseAction action : build.getActions(CauseAction.class)) { for (Cause cause : action.getCauses()) { if(cause instanceof RemoteCause){ //blah } } } On Tuesday, November 22, 2016 at 8:16:45 PM UTC+8, Andreas W

Re: Global "disable triggers" options

2016-11-15 Thread Ted Xiao
We run groovy script to remove timer trigger or other triggers, sample code import hudson.model.* import hudson.triggers.* import jenkins.model.* import com.cloudbees.hudson.plugins.folder.Folder def TIMER_TRIGGER_DESCRIPTOR = Hudson.instance.getDescriptorOrDie(TimerTrigger.class) def removeTrig

Re: Automated Jenkins Installs

2016-10-18 Thread Ted Xiao
If you are talking about the setup wizard in jenkinx 2.x, you can overwrite it by -Djenkins.install.runSetupWizard=false, a sample dockerfile FROM jenkins:latest USER jenkins RUN install-plugins.sh git workflow-aggregator # Skip initial setup ENV JAVA_OPTS -Djenkins.install.runSetupWizard=false

Re: Building a JAR File

2012-02-26 Thread Ted Jansen
n feature of Jenkins. > > I suggest you study the tools called "jar" or "ant". I myself have > used those to build jar files. > > -- Sami > > 2012/2/26 Ted Jansen : > > i just wanna build from some files automatic a jar file > > > > > &g

Re: Building a JAR File

2012-02-26 Thread Ted Jansen
something else. Maybe you could tell us > more about what you are doing and what seems to be going wrong? Exact > error messages and build console outputs are most useful. > > -- Sami > > 2012/2/26 Ted Jansen : > > Hello, > > > > > > This may be a noob quest

Building a JAR File

2012-02-26 Thread Ted Jansen
Hello, This may be a noob question. How can i build a jar file from jenkins from the workspace folder of a project? With friendly greets, Ted Jansen