[00:01:12] *** sbuj <sbuj!~sbuj@2601:200:c000:dbaa:ce0:baae:3ad5:d2ad> has joined #jenkins
[00:03:18] *** h12o <h12o!~h12o@210-135-213-163.parkcity.ne.jp> has joined #jenkins
[00:04:11] *** firemanxbr <firemanxbr!~firemanxb@2a00:1028:83a0:191e:b37e:981e:b4c0:3c0d> has quit IRC (Quit: Leaving)
[00:04:56] *** denimsoft <denimsoft!~textual@cpc115988-dals23-2-0-cust224.20-2.cable.virginm.net> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[00:05:37] *** rubdos <rubdos!~rubdos@ptr-1uzevqefjgxdm5wv65h.18120a2.ip6.access.telenet.be> has quit IRC (Ping timeout: 245 seconds)
[00:05:40] *** shellac <shellac!~textual@cpc97476-aztw32-2-0-cust40.18-1.cable.virginm.net> has quit IRC (Quit: Computer has gone to sleep.)
[00:07:11] *** mauli <mauli!~mauli@zusezm.maulware.com> has quit IRC (Read error: Connection reset by peer)
[00:08:38] *** mauli <mauli!~mauli@zusezm.maulware.com> has joined #jenkins
[00:08:43] *** h12o <h12o!~h12o@210-135-213-163.parkcity.ne.jp> has quit IRC (Ping timeout: 260 seconds)
[00:09:18] *** abayer <abayer!~abayer@jenkins/developer/abayer> has quit IRC (Quit: Leaving.)
[00:09:22] *** hkais <hkais!~xenoadmin@p2E562AF6.dip0.t-ipconnect.de> has quit IRC (Ping timeout: 264 seconds)
[00:10:21] *** morenoh149 <morenoh149!~hmoreno@4.30.90.116> has quit IRC (Ping timeout: 240 seconds)
[00:11:00] *** rubdos <rubdos!~rubdos@ptr-1uzevqefjgxdm5wv65h.18120a2.ip6.access.telenet.be> has joined #jenkins
[00:11:39] *** newhouse <newhouse!~newhouse@162.33.165.83.dynamic.reverse-mundo-r.com> has quit IRC (Read error: Connection reset by peer)
[00:12:47] *** iocanel <iocanel!~iocanel@redhat/jboss/iocanel> has quit IRC (Quit: WeeChat 2.0.1)
[00:16:42] *** sabre1041 <sabre1041!~sabre1041@209.211.103.18> has quit IRC (Remote host closed the connection)
[00:21:04] *** LordLion <LordLion!uid31081@wrongplanet/lordlion> has joined #jenkins
[00:24:27] *** douglas_ <douglas_!douglas@nat/redhat/x-mncngmgzwlwblsrr> has quit IRC (Ping timeout: 240 seconds)
[00:24:33] *** fax <fax!~fax@unaffiliated/fax> has joined #jenkins
[00:25:20] *** Cervator is now known as Cerv_afk
[00:25:38] *** venmx <venmx!~pactadmin@host31-48-151-7.range31-48.btcentralplus.com> has joined #jenkins
[00:32:46] *** esberglu <esberglu!~esberglu@67-5-19-187.rstr.qwest.net> has quit IRC ()
[00:33:50] *** kus_ <kus_!~kus@149.4.106.56> has joined #jenkins
[00:33:57] *** ldnunes <ldnunes!~ldnunes_@181.220.79.73> has quit IRC (Quit: Leaving)
[00:34:03] *** Alex_ <Alex_!d0263ba2@gateway/web/freenode/ip.208.38.59.162> has joined #jenkins
[00:34:11] *** amundj <amundj!~textual@185.176.245.137> has joined #jenkins
[00:36:57] *** Kelzier_ <Kelzier_!~duka@87.116.177.147> has quit IRC (Ping timeout: 264 seconds)
[00:37:20] *** hbautista <hbautista!~hbautista@189.201.191.13> has quit IRC (Remote host closed the connection)
[00:38:02] *** hbautista <hbautista!~hbautista@189.201.191.13> has joined #jenkins
[00:38:37] *** shellac <shellac!~textual@cpc97476-aztw32-2-0-cust40.18-1.cable.virginm.net> has joined #jenkins
[00:38:54] *** abhiyerra <abhiyerra!~textual@2601:645:0:5031:b88e:728b:1fdf:c48> has joined #jenkins
[00:39:11] <Alex_> Hello
[00:39:21] <Alex_> Does anyone know if it is possible to keep Jenkinsfile saved locally instead of committing it to SCM when using BlueOcean?
[00:43:43] *** venmx <venmx!~pactadmin@host31-48-151-7.range31-48.btcentralplus.com> has quit IRC (Ping timeout: 260 seconds)
[00:44:11] <tang^> locally where?
[00:44:28] <tang^> on the master? on an agent?
[00:45:00] *** tykeal is now known as tykeal_away
[00:45:05] <tang^> if you don't want to keep it in your code repository, you can make a pipeline job that uses local pipeline code instead of from SCM
[00:49:19] *** amundj <amundj!~textual@185.176.245.137> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[00:50:55] *** morenoh149 <morenoh149!~hmoreno@167.220.152.126> has joined #jenkins
[00:52:16] <Alex_> master or agent is irrelevant at this point
[00:52:28] *** Phylock <Phylock!~Phylock@D4709623.rev.sefiber.dk> has quit IRC (Ping timeout: 260 seconds)
[00:53:07] <tang^> it is relevant, actually. because what's local to the master isn't local to the agent
[00:53:22] <Alex_> even using an old UI when I choose a multibranch project I can not find this option
[00:53:24] <tang^> but it sounds like you just want to use a pipeline job with the pipeline right in the job
[00:53:32] <tang^> not available in multi-branch
[00:53:50] <Alex_> heh
[00:53:57] <Alex_> gotcha..
[00:54:02] <tang^> that explicitly looks for Jenkinsfile in each branch of the repo to determine whether to create a branch job
[00:54:30] <Alex_> makes sense
[00:54:50] <Alex_> my problem is that when I merge from Dev to Master it overwrites the Jenkinsfile
[00:55:04] <Alex_> but I would rather keep them separate
[00:55:04] <Anticlaus> Then don't change the Jenkinsfile
[00:55:13] <tang^> your Jenkinsfile should be branch aware
[00:55:17] <Anticlaus> ^
[00:55:18] <tang^> from the get go
[00:55:35] <Alex_> Ohhh
[00:55:43] <Alex_> sorry I am fairly new to Jenkins
[00:55:52] <Anticlaus> if (env.BRANCH_NAME.equals("master")) {
[00:55:57] <Anticlaus> etc etc
[00:56:08] <tang^> or when { branch 'master' }
[00:56:17] <tang^> depends on whether you're using declarative or not
[00:56:32] <tang^> also, when { not { branch 'master' } }
[00:56:45] <Alex_> Interesting
[00:56:49] <Alex_> I get the idea
[00:57:13] <tang^> my suggestions are for declarative: your Jenkinsfile starts with pipeline {}
[00:57:41] <Alex_> well, I would like the system to work with BlueOcean interface so that people who are even lass familiar with Jenkins could use it, so I am gussing declarative
[00:57:43] <Alex_> yeah
[00:58:05] <tang^> both scripted (which Anticlaus showed) and declarative work with blueocean
[00:58:24] <Alex_> perfect!
[00:58:29] <tang^> declarative is more opinionated and can be easier for the new folks to get a hang of
[00:58:45] <Alex_> yeah, that is what I read
[00:58:48] <Alex_> will start there
[00:58:59] <tang^> the documentation can help out
[01:00:05] <tang^> I've been converting a few folks at my office to pipeline jobs and I started with scripted
[01:00:11] <Anticlaus> scripted is better because I like it more
[01:00:13] <tang^> I'm getting the hang of declarative
[01:00:40] <tang^> scripted is very powerful for when you run into limits on declarative
[01:01:03] *** analogj <analogj!c0960ad2@gateway/web/freenode/ip.192.150.10.210> has quit IRC (Quit: Page closed)
[01:02:09] *** sabre1041 <sabre1041!~sabre1041@12.132.248.250> has joined #jenkins
[01:02:57] *** thc202 <thc202!~thc202@unaffiliated/thc202> has quit IRC (Ping timeout: 248 seconds)
[01:02:57] <Alex_> yeah, declarative seems to be pretty straight-forward
[01:03:32] *** tykeal_away is now known as tykeal
[01:04:07] <Alex_> is there a description of all possible operators for the declarative kind of code?
[01:04:26] <Alex_> conditions are not shown in that link
[01:07:00] *** Singmyr <Singmyr!~singmyr@80.216.49.44> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[01:07:27] *** sarri <sarri!~sari@unaffiliated/sarri> has quit IRC (Ping timeout: 240 seconds)
[01:08:03] <Alex_> there is bunch of examples, nice
[01:08:07] <Alex_> thank you guys
[01:08:17] <tang^> welcome
[01:08:48] *** drichtar <drichtar!~drichtar@194.228.79.177> has quit IRC (Ping timeout: 260 seconds)
[01:09:26] *** mbenson <mbenson!~mbenson@apache/committer/mbenson> has quit IRC (Ping timeout: 268 seconds)
[01:10:28] <tang^> I'm oota here
[01:12:02] <Alex_> have a good one!
[01:12:25] *** abhiyerra <abhiyerra!~textual@2601:645:0:5031:b88e:728b:1fdf:c48> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[01:12:46] *** sbuj <sbuj!~sbuj@2601:200:c000:dbaa:ce0:baae:3ad5:d2ad> has quit IRC (Quit: sbuj)
[01:13:23] *** abhiyerra <abhiyerra!~textual@2601:645:0:5031:b88e:728b:1fdf:c48> has joined #jenkins
[01:14:45] *** sbuj <sbuj!~sbuj@2601:200:c000:dbaa:ce0:baae:3ad5:d2ad> has joined #jenkins
[01:14:48] *** sarri <sarri!~sari@p50995cae.dip0.t-ipconnect.de> has joined #jenkins
[01:14:48] *** sarri <sarri!~sari@p50995cae.dip0.t-ipconnect.de> has quit IRC (Changing host)
[01:14:48] *** sarri <sarri!~sari@unaffiliated/sarri> has joined #jenkins
[01:16:54] *** sneko <sneko!4ece3c0b@gateway/web/freenode/ip.78.206.60.11> has joined #jenkins
[01:17:03] <sneko> anyone there :) ?
[01:18:16] <sneko> I have an issue with Jenkins... it seems that Git do not have rights on workspace folder. Is there a way to modify that from UI ?
[01:18:17] <sneko> ERROR: Error cloning remote repo 'origin' hudson.plugins.git.GitException: Command "git fetch --no-tags --progress git at bitbucket dot org:xxxxxxxxxxxxx.git +refs/heads/*:refs/remotes/origin/*" returned status code 128: stdout: stderr: fatal: cannot exec '/home/jenkins/workspace/xxxxxxxxx_master-7JMZPV5GKPYJ7FXGSQK6YYEOA6VIRJOEPUFA5ATSGLP5FPZSOMBA at tmp/ssh6122672630332030715 dot sh': Permission denied fatal: unable to fork
[01:18:31] <sneko> Thank you :)
[01:18:48] *** abhiyerra <abhiyerra!~textual@2601:645:0:5031:b88e:728b:1fdf:c48> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[01:19:10] *** abhiyerra <abhiyerra!~textual@2601:645:0:5031:b88e:728b:1fdf:c48> has joined #jenkins
[01:19:26] *** abhiyerra <abhiyerra!~textual@2601:645:0:5031:b88e:728b:1fdf:c48> has quit IRC (Client Quit)
[01:21:29] *** ciciki <ciciki!4e227dc0@gateway/web/freenode/ip.78.34.125.192> has quit IRC (Ping timeout: 260 seconds)
[01:25:45] *** shpoont <shpoont!~shpoont@bzq-84-108-23-10.cablep.bezeqint.net> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[01:26:29] *** caphrim007_ <caphrim007_!~caphrim00@50.206.82.175> has joined #jenkins
[01:27:32] *** binaryking <binaryking!uid19295@gateway/web/irccloud.com/x-ctmcmmkrigiceggb> has quit IRC (Quit: Connection closed for inactivity)
[01:28:56] *** caphrim007_ <caphrim007_!~caphrim00@50.206.82.175> has quit IRC (Read error: Connection reset by peer)
[01:29:32] *** briandawson <briandawson!~briandaws@ip68-7-149-6.sd.sd.cox.net> has quit IRC (Remote host closed the connection)
[01:30:24] *** caphrim007 <caphrim007!~caphrim00@50.206.82.144> has quit IRC (Ping timeout: 260 seconds)
[01:30:49] *** Alex_ <Alex_!d0263ba2@gateway/web/freenode/ip.208.38.59.162> has quit IRC (Ping timeout: 260 seconds)
[01:31:09] *** vtcoo <vtcoo!~vtcoo@rrcs-76-81-174-19.west.biz.rr.com> has joined #jenkins
[01:31:34] *** horsey <horsey!~horsey@122.167.94.70> has joined #jenkins
[01:32:13] *** sbuj <sbuj!~sbuj@2601:200:c000:dbaa:ce0:baae:3ad5:d2ad> has quit IRC (Quit: sbuj)
[01:32:17] *** tykeal is now known as tykeal_away
[01:36:21] *** horsey <horsey!~horsey@122.167.94.70> has quit IRC (Ping timeout: 240 seconds)
[01:41:12] *** Budgie^Smore <Budgie^Smore!~stormmore@71-6-10-107.static-ip.telepacific.net> has quit IRC (Ping timeout: 256 seconds)
[01:46:23] *** abhiyerra <abhiyerra!~textual@2601:645:0:5031:b88e:728b:1fdf:c48> has joined #jenkins
[01:49:25] *** rsmith_cloudbees <rsmith_cloudbees!~rsmith_cl@71-212-235-226.hlrn.qwest.net> has quit IRC (Quit: rsmith_cloudbees)
[01:50:04] *** tykeal_away is now known as tykeal
[01:50:46] *** rsmith_cloudbees <rsmith_cloudbees!~rsmith_cl@71-212-235-226.hlrn.qwest.net> has joined #jenkins
[01:54:35] *** fatdragon <fatdragon!~fatdragon@cpe-107-184-105-188.socal.res.rr.com> has quit IRC ()
[01:55:02] *** abhiyerra <abhiyerra!~textual@2601:645:0:5031:b88e:728b:1fdf:c48> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[01:55:31] *** abhiyerra <abhiyerra!~textual@2601:645:0:5031:b88e:728b:1fdf:c48> has joined #jenkins
[01:58:00] *** vtcoo <vtcoo!~vtcoo@rrcs-76-81-174-19.west.biz.rr.com> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[01:59:20] *** binaryking <binaryking!uid19295@gateway/web/irccloud.com/x-uqrvgtudzsucrolh> has joined #jenkins
[01:59:40] *** stuartr <stuartr!9f998867@gateway/web/freenode/ip.159.153.136.103> has joined #jenkins
[02:00:03] *** cratliff <cratliff!~cratliff@cpe-74-136-204-38.kya.res.rr.com> has joined #jenkins
[02:02:51] *** villav <villav!~Thunderbi@73.247.96.23> has quit IRC (Ping timeout: 256 seconds)
[02:04:37] *** ky13_ <ky13_!~ky13_@207.141.65.5> has quit IRC (Remote host closed the connection)
[02:05:18] *** ky13_ <ky13_!~ky13_@207.141.65.5> has joined #jenkins
[02:09:00] *** abhiyerra <abhiyerra!~textual@2601:645:0:5031:b88e:728b:1fdf:c48> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[02:10:03] *** ky13_ <ky13_!~ky13_@207.141.65.5> has quit IRC (Ping timeout: 260 seconds)
[02:12:10] *** ky13_ <ky13_!~ky13_@207.141.65.5> has joined #jenkins
[02:12:24] *** ky13_ <ky13_!~ky13_@207.141.65.5> has quit IRC (Remote host closed the connection)
[02:12:34] *** cr3 <cr3!~cr3@207.107.68.234> has quit IRC (Quit: leaving)
[02:12:36] *** ky13_ <ky13_!~ky13_@207.141.65.5> has joined #jenkins
[02:26:51] *** minot <minot!~kus@ns3.queenslibrary.org> has quit IRC (Ping timeout: 240 seconds)
[02:27:47] *** morenoh149 <morenoh149!~hmoreno@167.220.152.126> has quit IRC (Ping timeout: 256 seconds)
[02:28:01] *** shellac <shellac!~textual@cpc97476-aztw32-2-0-cust40.18-1.cable.virginm.net> has quit IRC (Quit: Computer has gone to sleep.)
[02:32:04] *** morenoh149 <morenoh149!~hmoreno@167.220.152.126> has joined #jenkins
[02:35:00] *** zerocoolback <zerocoolback!~zerocoolb@106.51.106.240> has joined #jenkins
[02:37:29] *** morenoh149 <morenoh149!~hmoreno@167.220.152.126> has quit IRC (Ping timeout: 276 seconds)
[02:37:46] *** morenoh149 <morenoh149!~hmoreno@rrcs-50-74-70-187.nyc.biz.rr.com> has joined #jenkins
[02:40:30] *** rsmith_cloudbees <rsmith_cloudbees!~rsmith_cl@71-212-235-226.hlrn.qwest.net> has left #jenkins
[02:44:26] *** caphrim007 <caphrim007!~caphrim00@c-98-247-99-172.hsd1.wa.comcast.net> has joined #jenkins
[02:49:11] *** caphrim007 <caphrim007!~caphrim00@c-98-247-99-172.hsd1.wa.comcast.net> has quit IRC (Ping timeout: 276 seconds)
[02:58:18] *** Budgie^Smore <Budgie^Smore!~stormmore@107-207-33-16.lightspeed.sntcca.sbcglobal.net> has joined #jenkins
[03:03:29] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Remote host closed the connection)
[03:03:49] *** TheJestr_ <TheJestr_!~TheJestr@ec2-18-216-246-132.us-east-2.compute.amazonaws.com> has joined #jenkins
[03:04:14] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[03:04:27] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Remote host closed the connection)
[03:05:25] <TheJestr_> hi
[03:07:37] *** rsmith_cloudbees <rsmith_cloudbees!~rsmith_cl@71-212-235-226.hlrn.qwest.net> has joined #jenkins
[03:08:02] *** rsmith_cloudbees <rsmith_cloudbees!~rsmith_cl@71-212-235-226.hlrn.qwest.net> has left #jenkins
[03:08:40] *** jri <jri!~jri@lns-bzn-36-82-251-41-102.adsl.proxad.net> has joined #jenkins
[03:09:27] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[03:11:26] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Remote host closed the connection)
[03:12:01] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[03:12:57] *** jri <jri!~jri@lns-bzn-36-82-251-41-102.adsl.proxad.net> has quit IRC (Ping timeout: 240 seconds)
[03:13:01] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Read error: Connection reset by peer)
[03:13:17] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[03:16:05] *** fax <fax!~fax@unaffiliated/fax> has quit IRC (Quit: Konversation terminated!)
[03:19:31] *** caphrim007 <caphrim007!~caphrim00@c-98-247-99-172.hsd1.wa.comcast.net> has joined #jenkins
[03:20:16] *** sneko <sneko!4ece3c0b@gateway/web/freenode/ip.78.206.60.11> has quit IRC (Quit: Page closed)
[03:20:55] *** vtcoo <vtcoo!~vtcoo@2606:6000:6307:f00:d0f0:e29e:3f68:2aba> has joined #jenkins
[03:23:25] *** caphrim007_ <caphrim007_!~caphrim00@50.206.82.181> has joined #jenkins
[03:26:45] *** caphrim007 <caphrim007!~caphrim00@c-98-247-99-172.hsd1.wa.comcast.net> has quit IRC (Ping timeout: 263 seconds)
[03:32:28] *** horsey <horsey!~horsey@122.167.94.70> has joined #jenkins
[03:37:26] *** horsey <horsey!~horsey@122.167.94.70> has quit IRC (Ping timeout: 268 seconds)
[03:49:05] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Remote host closed the connection)
[03:49:40] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[03:50:00] *** vtcoo <vtcoo!~vtcoo@2606:6000:6307:f00:d0f0:e29e:3f68:2aba> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[03:50:16] *** ResidentBiscuit <ResidentBiscuit!~residentb@unaffiliated/residentbiscuit> has joined #jenkins
[03:51:35] *** konishi <konishi!~Takayuki@FL1-221-171-240-3.fko.mesh.ad.jp> has quit IRC (Ping timeout: 276 seconds)
[03:54:21] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Remote host closed the connection)
[03:54:27] <ggarcia> Hi! Is anybody there that can answer a few doubts that I'm having? Questions are related to the build details for pipeline jobs; The details being show are not the same for a Pipeline Job
[03:54:49] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[04:01:40] *** konishi <konishi!~Takayuki@FL1-119-239-18-205.fko.mesh.ad.jp> has joined #jenkins
[04:04:03] <ggarcia> Is there any way to add the links to the build details?
[04:04:35] *** bmurt <bmurt!~hmm@216.164.232.97> has joined #jenkins
[04:06:57] *** morenoh149 <morenoh149!~hmoreno@rrcs-50-74-70-187.nyc.biz.rr.com> has quit IRC (Ping timeout: 256 seconds)
[04:07:27] *** ResidentBiscuit <ResidentBiscuit!~residentb@unaffiliated/residentbiscuit> has quit IRC ()
[04:07:32] *** binaryking <binaryking!uid19295@gateway/web/irccloud.com/x-uqrvgtudzsucrolh> has quit IRC (Quit: Connection closed for inactivity)
[04:11:44] *** jwitrick <jwitrick!~jwitrick@2604:2d80:8010:84a7:8015:94fa:9843:f1a7> has quit IRC (Ping timeout: 276 seconds)
[04:13:46] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Remote host closed the connection)
[04:19:35] *** ky13_ <ky13_!~ky13_@207.141.65.5> has quit IRC (Remote host closed the connection)
[04:20:17] *** ky13_ <ky13_!~ky13_@207.141.65.5> has joined #jenkins
[04:23:42] *** gli|wfh <gli|wfh!~gli@111.199.189.73> has joined #jenkins
[04:24:58] *** ky13_ <ky13_!~ky13_@207.141.65.5> has quit IRC (Ping timeout: 264 seconds)
[04:35:17] *** zerocoolback <zerocoolback!~zerocoolb@106.51.106.240> has quit IRC (Remote host closed the connection)
[04:36:44] *** ky13_ <ky13_!~ky13_@96.72.184.213> has joined #jenkins
[04:36:59] *** zerocoolback <zerocoolback!~zerocoolb@106.51.106.240> has joined #jenkins
[04:38:00] *** inovas <inovas!~inovas@47.63.73.120> has joined #jenkins
[04:40:31] *** binaryking <binaryking!uid19295@gateway/web/irccloud.com/x-uxwufhgadbeieiwj> has joined #jenkins
[04:41:24] *** zerocoolback <zerocoolback!~zerocoolb@106.51.106.240> has quit IRC (Ping timeout: 256 seconds)
[04:41:24] *** ky13_ <ky13_!~ky13_@96.72.184.213> has quit IRC (Ping timeout: 256 seconds)
[04:52:18] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[04:52:49] *** raynold <raynold!uid201163@gateway/web/irccloud.com/x-icsvufqzzxdiqotw> has quit IRC (Quit: Connection closed for inactivity)
[04:55:51] *** fibsifan <fibsifan!~quassel@200116b84094bf00d25099fffec192fd.dip.versatel-1u1.de> has quit IRC (Ping timeout: 240 seconds)
[04:56:15] *** fibsifan <fibsifan!~quassel@200116b8404a5300d25099fffec192fd.dip.versatel-1u1.de> has joined #jenkins
[04:58:41] *** amodi <amodi!amodi@nat/redhat/x-wqrkvhjllsjaihqx> has quit IRC (Ping timeout: 248 seconds)
[05:01:33] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Ping timeout: 264 seconds)
[05:02:33] *** Ponury_Typ <Ponury_Typ!~Ponury_Ty@aqf47.neoplus.adsl.tpnet.pl> has joined #jenkins
[05:03:57] *** Ponury_Typ2 <Ponury_Typ2!~Ponury_Ty@aqk211.neoplus.adsl.tpnet.pl> has quit IRC (Ping timeout: 240 seconds)
[05:04:29] *** morenoh149 <morenoh149!~hmoreno@ool-435618ca.dyn.optonline.net> has joined #jenkins
[05:05:10] *** mauli <mauli!~mauli@zusezm.maulware.com> has quit IRC (Read error: Connection reset by peer)
[05:08:51] *** morenoh149 <morenoh149!~hmoreno@ool-435618ca.dyn.optonline.net> has quit IRC (Ping timeout: 240 seconds)
[05:11:01] *** stuartr <stuartr!9f998867@gateway/web/freenode/ip.159.153.136.103> has quit IRC (Quit: Page closed)
[05:11:25] *** douglas_ <douglas_!~douglas@c-73-234-93-65.hsd1.nh.comcast.net> has joined #jenkins
[05:11:51] *** bmurt <bmurt!~hmm@216.164.232.97> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[05:12:27] *** bmurt <bmurt!~hmm@216.164.232.97> has joined #jenkins
[05:16:58] *** raynold <raynold!uid201163@gateway/web/irccloud.com/x-ylndnyutjhcixwda> has joined #jenkins
[05:17:05] *** bmurt <bmurt!~hmm@216.164.232.97> has quit IRC (Client Quit)
[05:17:59] *** gli|wfh <gli|wfh!~gli@111.199.189.73> has quit IRC (Quit: Leaving)
[05:25:36] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[05:25:47] *** dino82 <dino82!~deeno@2605:a000:1307:83b5:20c:29ff:fe1c:5fd8> has joined #jenkins
[05:25:47] *** dino82 <dino82!~deeno@2605:a000:1307:83b5:20c:29ff:fe1c:5fd8> has quit IRC (Changing host)
[05:25:47] *** dino82 <dino82!~deeno@unaffiliated/dino82> has joined #jenkins
[05:29:51] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Ping timeout: 240 seconds)
[05:31:56] *** zerocoolback <zerocoolback!~zerocoolb@106.51.106.240> has joined #jenkins
[05:33:18] *** horsey <horsey!~horsey@122.167.94.70> has joined #jenkins
[05:33:26] *** tykeal is now known as tykeal_away
[05:35:22] *** thisguy123 <thisguy123!17f0bec3@gateway/web/cgi-irc/kiwiirc.com/ip.23.240.190.195> has joined #jenkins
[05:38:11] *** horsey <horsey!~horsey@122.167.94.70> has quit IRC (Ping timeout: 256 seconds)
[05:38:11] *** zerocoolback <zerocoolback!~zerocoolb@106.51.106.240> has quit IRC (Ping timeout: 256 seconds)
[05:39:19] *** douglas_ <douglas_!~douglas@c-73-234-93-65.hsd1.nh.comcast.net> has quit IRC (Ping timeout: 256 seconds)
[05:41:45] *** thisguy123 <thisguy123!17f0bec3@gateway/web/cgi-irc/kiwiirc.com/ip.23.240.190.195> has quit IRC (Remote host closed the connection)
[05:42:26] *** zerocoolback <zerocoolback!~zerocoolb@106.51.106.240> has joined #jenkins
[05:44:20] *** tykeal_away is now known as tykeal
[05:45:06] *** tykeal is now known as tykeal_away
[05:49:04] *** qassim <qassim!~me@s.qassim.uk> has quit IRC (Ping timeout: 248 seconds)
[05:49:04] *** tang^ <tang^!~tang@ec2-52-72-195-18.compute-1.amazonaws.com> has quit IRC (Ping timeout: 248 seconds)
[05:49:04] *** hypraware <hypraware!~ha@67.222.111.202> has quit IRC (Ping timeout: 248 seconds)
[05:49:04] *** maryo <maryo!~david@unaffiliated/maryo> has quit IRC (Ping timeout: 248 seconds)
[05:49:08] *** zerocoolback <zerocoolback!~zerocoolb@106.51.106.240> has quit IRC (Ping timeout: 276 seconds)
[05:49:41] *** echelog-1` <echelog-1`!~echelog-1@108.61.103.42> has joined #jenkins
[05:49:51] *** rory <rory!~rory@vega.rory.sh> has quit IRC (Read error: Connection reset by peer)
[05:49:58] *** hypraware <hypraware!~ha@67.222.111.202> has joined #jenkins
[05:50:21] *** echelog-1` is now known as echelog-1
[05:51:16] *** qassim <qassim!~me@s.qassim.uk> has joined #jenkins
[05:51:57] *** Mixologic <Mixologic!~Mixologic@ec2-54-201-228-67.us-west-2.compute.amazonaws.com> has quit IRC (Ping timeout: 240 seconds)
[05:52:06] *** maryo <maryo!~david@unaffiliated/maryo> has joined #jenkins
[05:52:55] *** tang^ <tang^!~tang@ec2-52-72-195-18.compute-1.amazonaws.com> has joined #jenkins
[05:53:31] *** vtcoo <vtcoo!~vtcoo@2606:6000:6307:f00:d0f0:e29e:3f68:2aba> has joined #jenkins
[05:54:34] *** Mixologic <Mixologic!~Mixologic@ec2-54-201-228-67.us-west-2.compute.amazonaws.com> has joined #jenkins
[06:00:33] *** zerocoolback <zerocoolback!~zerocoolb@106.51.106.240> has joined #jenkins
[06:05:21] *** cratliff <cratliff!~cratliff@cpe-74-136-204-38.kya.res.rr.com> has quit IRC (Ping timeout: 248 seconds)
[06:05:26] *** zerocoolback <zerocoolback!~zerocoolb@106.51.106.240> has quit IRC (Ping timeout: 268 seconds)
[06:08:27] *** jri <jri!~jri@lns-bzn-36-82-251-41-102.adsl.proxad.net> has joined #jenkins
[06:13:18] *** jri <jri!~jri@lns-bzn-36-82-251-41-102.adsl.proxad.net> has quit IRC (Ping timeout: 260 seconds)
[06:33:03] *** jfemia_ <jfemia_!~jfemia@217.113.163.163> has joined #jenkins
[06:34:33] *** jfemia <jfemia!~jfemia@217.113.163.163> has quit IRC (Ping timeout: 264 seconds)
[06:46:12] *** Cerv_afk <Cerv_afk!~Thunderbi@2601:4c1:4001:1d5d:c058:e01d:c348:e6a1> has quit IRC (Quit: Cerv_afk)
[06:56:27] *** konishi <konishi!~Takayuki@FL1-119-239-18-205.fko.mesh.ad.jp> has quit IRC (Ping timeout: 240 seconds)
[06:58:46] *** pjanouse <pjanouse!~pjanouse@gw06.netfree.cz> has joined #jenkins
[06:59:09] *** abhiyerra <abhiyerra!~textual@2601:645:0:5031:b88e:728b:1fdf:c48> has joined #jenkins
[06:59:59] *** srinidhi <srinidhi!~srinidhi@opensuse/member/srinidhi> has joined #jenkins
[07:00:31] *** majestic <majestic!~majestic@gateway/tor-sasl/majestic> has quit IRC (Read error: Connection reset by peer)
[07:01:18] *** majestic <majestic!~majestic@gateway/tor-sasl/majestic> has joined #jenkins
[07:03:06] *** h12o <h12o!~h12o@pl11378.ag1212.nttpc.ne.jp> has joined #jenkins
[07:06:57] *** srinidhi <srinidhi!~srinidhi@opensuse/member/srinidhi> has quit IRC (Ping timeout: 264 seconds)
[07:08:08] *** h12o <h12o!~h12o@pl11378.ag1212.nttpc.ne.jp> has quit IRC (Ping timeout: 260 seconds)
[07:08:45] *** hbautista <hbautista!~hbautista@189.201.191.13> has quit IRC (Quit: Leaving)
[07:14:10] *** venmx <venmx!~pactadmin@host31-48-151-7.range31-48.btcentralplus.com> has joined #jenkins
[07:15:15] *** zerocoolback <zerocoolback!~zerocoolb@106.51.106.240> has joined #jenkins
[07:17:07] *** zerocoolback <zerocoolback!~zerocoolb@106.51.106.240> has quit IRC (Remote host closed the connection)
[07:17:40] *** zerocoolback <zerocoolback!~zerocoolb@106.51.106.240> has joined #jenkins
[07:22:51] *** h12o <h12o!~h12o@pl11378.ag1212.nttpc.ne.jp> has joined #jenkins
[07:27:29] *** h12o <h12o!~h12o@pl11378.ag1212.nttpc.ne.jp> has quit IRC (Ping timeout: 248 seconds)
[07:34:10] *** horsey <horsey!~horsey@122.167.94.70> has joined #jenkins
[07:35:19] *** gli <gli!~gli@119.254.120.72> has joined #jenkins
[07:35:28] *** Kelzier <Kelzier!~duka@87.116.180.147> has joined #jenkins
[07:36:54] *** horsey <horsey!~horsey@122.167.94.70> has quit IRC (Read error: No route to host)
[07:36:59] *** horsey <horsey!~horsey@122.167.94.70> has joined #jenkins
[07:37:26] *** abhiyerra <abhiyerra!~textual@2601:645:0:5031:b88e:728b:1fdf:c48> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[07:42:49] *** h12o <h12o!~h12o@pl11378.ag1212.nttpc.ne.jp> has joined #jenkins
[07:44:03] *** vtcoo <vtcoo!~vtcoo@2606:6000:6307:f00:d0f0:e29e:3f68:2aba> has quit IRC (Read error: Connection reset by peer)
[07:44:27] *** hkais <hkais!~xenoadmin@p2E562730.dip0.t-ipconnect.de> has joined #jenkins
[07:44:55] *** srinidhi <srinidhi!~srinidhi@opensuse/member/srinidhi> has joined #jenkins
[07:47:45] *** h12o <h12o!~h12o@pl11378.ag1212.nttpc.ne.jp> has quit IRC (Ping timeout: 248 seconds)
[07:50:01] *** zerok <zerok!~textual@213.33.112.58> has joined #jenkins
[07:50:01] *** zerok <zerok!~textual@213.33.112.58> has quit IRC (Changing host)
[07:50:01] *** zerok <zerok!~textual@pdpc/supporter/active/zerok> has joined #jenkins
[07:56:27] *** asaleh <asaleh!~asaleh@2a00:1028:83a6:512:2ab2:bdff:fea2:af8> has joined #jenkins
[07:56:58] *** venmx <venmx!~pactadmin@host31-48-151-7.range31-48.btcentralplus.com> has quit IRC (Ping timeout: 246 seconds)
[07:57:53] *** sabre1041 <sabre1041!~sabre1041@12.132.248.250> has quit IRC (Remote host closed the connection)
[08:01:57] *** zerocoolback <zerocoolback!~zerocoolb@106.51.106.240> has quit IRC ()
[08:11:03] *** jimklimov <jimklimov!~jimklimov@31.7.243.238> has joined #jenkins
[08:11:04] *** asaleh <asaleh!~asaleh@2a00:1028:83a6:512:2ab2:bdff:fea2:af8> has quit IRC (Ping timeout: 256 seconds)
[08:16:55] *** Hounddog <Hounddog!~quassel@p200300D42BC163899DEAD4679506DF0E.dip0.t-ipconnect.de> has joined #jenkins
[08:21:37] *** bjornmagnusson <bjornmagnusson!d57129d4@gateway/web/freenode/ip.213.113.41.212> has joined #jenkins
[08:24:00] *** jimklimov <jimklimov!~jimklimov@31.7.243.238> has quit IRC (Read error: Connection reset by peer)
[08:24:22] *** srinidhi <srinidhi!~srinidhi@opensuse/member/srinidhi> has quit IRC (Ping timeout: 264 seconds)
[08:25:15] *** ogondza <ogondza!ogondza@nat/redhat/x-bdpydripqlmgnnxq> has joined #jenkins
[08:25:15] *** ChanServ sets mode: +v ogondza
[08:28:33] *** jimklimov <jimklimov!~jimklimov@31.7.243.238> has joined #jenkins
[08:28:49] *** webguynow <webguynow!~webguynow@c-73-209-102-90.hsd1.il.comcast.net> has quit IRC (Ping timeout: 252 seconds)
[08:29:04] *** webguynow <webguynow!~webguynow@c-73-209-102-90.hsd1.il.comcast.net> has joined #jenkins
[08:30:50] *** bjornmagnusson <bjornmagnusson!d57129d4@gateway/web/freenode/ip.213.113.41.212> has quit IRC (Ping timeout: 260 seconds)
[08:37:03] *** iocanel <iocanel!~iocanel@redhat/jboss/iocanel> has joined #jenkins
[08:38:31] *** TomTom <TomTom!uid45892@gateway/web/irccloud.com/x-utzhsmssacwvamiw> has joined #jenkins
[08:38:56] *** sundhell_away is now known as sundhell
[08:41:02] *** vtunka <vtunka!vtunka@nat/redhat/x-efuwsgsxydcohvbm> has joined #jenkins
[08:42:18] *** drichtar <drichtar!drichtar@nat/redhat/x-jntcsrcpoxpeegdp> has joined #jenkins
[08:42:43] *** horsey <horsey!~horsey@122.167.94.70> has quit IRC (Remote host closed the connection)
[08:46:32] *** vjuranek <vjuranek!~vjuranek@2a00:1028:919b:e056:ce3d:82ff:fe5f:85e3> has joined #jenkins
[08:46:32] *** vjuranek <vjuranek!~vjuranek@2a00:1028:919b:e056:ce3d:82ff:fe5f:85e3> has quit IRC (Changing host)
[08:46:32] *** vjuranek <vjuranek!~vjuranek@redhat/jboss/vjuranek> has joined #jenkins
[08:46:32] *** ChanServ sets mode: +v vjuranek
[08:47:29] *** shellac <shellac!~textual@cpc97476-aztw32-2-0-cust40.18-1.cable.virginm.net> has joined #jenkins
[08:47:32] *** binaryking <binaryking!uid19295@gateway/web/irccloud.com/x-uxwufhgadbeieiwj> has quit IRC (Quit: Connection closed for inactivity)
[08:49:00] *** luc4 <luc4!~luca@ip-28-60.sn2.clouditalia.com> has joined #jenkins
[08:49:08] *** vtunka <vtunka!vtunka@nat/redhat/x-efuwsgsxydcohvbm> has quit IRC (Read error: Connection reset by peer)
[08:49:39] *** vtunka <vtunka!vtunka@nat/redhat/x-uttpiahaimutjyes> has joined #jenkins
[08:50:33] *** jimklimov1 <jimklimov1!~jimklimov@31.7.243.238> has joined #jenkins
[08:50:33] *** jimklimov <jimklimov!~jimklimov@31.7.243.238> has quit IRC (Read error: Connection reset by peer)
[08:53:07] *** vjuranek <vjuranek!~vjuranek@redhat/jboss/vjuranek> has quit IRC (Ping timeout: 245 seconds)
[08:53:11] *** vjuranek_ <vjuranek_!~vjuranek@redhat/jboss/vjuranek> has joined #jenkins
[08:53:11] *** ChanServ sets mode: +v vjuranek_
[08:54:46] *** narcan <narcan!~narcan@62-193-56-180.as16211.net> has joined #jenkins
[08:55:25] *** upperdeck <upperdeck!~upperdeck@221.127.55.114> has quit IRC (Ping timeout: 246 seconds)
[09:01:25] *** konishi <konishi!~Takayuki@FL1-133-208-251-116.fko.mesh.ad.jp> has joined #jenkins
[09:03:54] *** upperdeck <upperdeck!~upperdeck@221.127.55.114> has joined #jenkins
[09:04:18] *** Py_mona <Py_mona!~Mona@unaffiliated/kumudini> has joined #jenkins
[09:11:45] *** cmuller <cmuller!~cmuller@134.117.39.62.rev.sfr.net> has joined #jenkins
[09:13:00] *** seschwar <seschwar!~seschwar@unaffiliated/seschwar> has joined #jenkins
[09:13:49] *** StarWarsFan|afk is now known as StarWarsFan
[09:18:21] *** Py_mona <Py_mona!~Mona@unaffiliated/kumudini> has quit IRC (Ping timeout: 265 seconds)
[09:20:05] *** antgel_ <antgel_!~topdog@IGLD-84-229-96-227.inter.net.il> has quit IRC (Ping timeout: 240 seconds)
[09:20:57] *** Py_mona <Py_mona!~Mona@unaffiliated/kumudini> has joined #jenkins
[09:23:57] *** frechdachs69 <frechdachs69!~chatzilla@195.243.167.66> has joined #jenkins
[09:25:00] *** floppydh <floppydh!floppydh@gateway/vpn/privateinternetaccess/floppydh> has joined #jenkins
[09:27:14] <floppydh> is there something I can use to exit a `stages`-block preemptively? - i.e. inside a stage I want to conditionally quit/exit
[09:31:03] *** dmone <dmone!~dmone@154.57.4.229> has joined #jenkins
[09:31:05] *** venmx <venmx!~pactadmin@82.132.243.34> has joined #jenkins
[09:31:58] *** sobczyk <sobczyk!~ssobik@host-89.25.216.1.static.3s.pl> has joined #jenkins
[09:32:55] <sobczyk> hi, I have discard set to 20 builds and 60 days, yet jenkins has 30 items in list and over 500 directories in builds
[09:33:04] <sobczyk> is there a way to reclaim that space?
[09:34:02] *** gli <gli!~gli@119.254.120.72> has quit IRC (Ping timeout: 276 seconds)
[09:34:11] *** Py_mona <Py_mona!~Mona@unaffiliated/kumudini> has quit IRC (Read error: Connection reset by peer)
[09:34:27] *** akostadinov <akostadinov!~avalon@redhat/jboss/akostadinov> has joined #jenkins
[09:34:43] *** Py_mona <Py_mona!~Mona@unaffiliated/kumudini> has joined #jenkins
[09:35:00] *** jri <jri!~jri@193.54.67.94> has joined #jenkins
[09:36:57] *** asaleh <asaleh!asaleh@nat/redhat/x-mmlxmupnqalmanwm> has joined #jenkins
[09:39:57] *** jri <jri!~jri@193.54.67.94> has quit IRC (Remote host closed the connection)
[09:40:32] *** jri <jri!~jri@193.54.67.94> has joined #jenkins
[09:40:32] *** jri <jri!~jri@193.54.67.94> has quit IRC (Remote host closed the connection)
[09:40:47] *** jri <jri!~jri@193.54.67.94> has joined #jenkins
[09:43:51] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[09:46:01] <sobczyk> it seems jenkins does not inherit log roration from parent multibranch configuration
[09:46:20] <sobczyk> :(
[09:48:57] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Ping timeout: 264 seconds)
[09:49:49] *** antgel <antgel!~topdog@141.226.120.30> has joined #jenkins
[09:50:20] *** gli <gli!~gli@119.254.120.72> has joined #jenkins
[09:52:16] *** ujjain <ujjain!~ujjain@31.160.55.113> has joined #jenkins
[09:53:37] *** shellac <shellac!~textual@cpc97476-aztw32-2-0-cust40.18-1.cable.virginm.net> has quit IRC (Quit: Computer has gone to sleep.)
[09:54:16] *** electrofelix <electrofelix!~pelix@15.203.233.77> has joined #jenkins
[09:56:27] *** vtunka <vtunka!vtunka@nat/redhat/x-uttpiahaimutjyes> has quit IRC (Quit: Leaving)
[09:56:51] *** drichtar <drichtar!drichtar@nat/redhat/x-jntcsrcpoxpeegdp> has quit IRC (Ping timeout: 240 seconds)
[10:01:33] *** antgel <antgel!~topdog@141.226.120.30> has quit IRC (Ping timeout: 264 seconds)
[10:03:09] *** antgel <antgel!~topdog@ec2-34-207-142-82.compute-1.amazonaws.com> has joined #jenkins
[10:03:11] *** jstrachan <jstrachan!~jstrachan@host86-128-128-164.range86-128.btcentralplus.com> has joined #jenkins
[10:03:29] *** harisu____ <harisu____!uid137087@gateway/web/irccloud.com/x-volhlebvdfwizxks> has joined #jenkins
[10:07:45] *** vtunka <vtunka!vtunka@nat/redhat/x-fjujdzlzogagmwwt> has joined #jenkins
[10:07:48] *** stormerider <stormerider!~morgan@unaffiliated/stormerider> has quit IRC (Ping timeout: 265 seconds)
[10:08:55] *** jri <jri!~jri@193.54.67.94> has quit IRC (Remote host closed the connection)
[10:10:35] *** venmx <venmx!~pactadmin@82.132.243.34> has quit IRC (Remote host closed the connection)
[10:11:19] <floppydh> sobczyk: does not inherit log rotation?
[10:23:10] *** srinidhi <srinidhi!~srinidhi@opensuse/member/srinidhi> has joined #jenkins
[10:23:47] *** firemanxbr <firemanxbr!~firemanxb@2a00:1028:83a0:191e:b37e:981e:b4c0:3c0d> has joined #jenkins
[10:23:58] <floppydh> can someone share a decently sized open-source project that uses a decently sized set of Jenkinsfiles/shared-libs that I can copy stuff from and turn to for warm and safety?
[10:24:18] *** philipgough <philipgough!~philipgou@148.252.9.234> has joined #jenkins
[10:28:12] *** vtunka <vtunka!vtunka@nat/redhat/x-fjujdzlzogagmwwt> has quit IRC (Quit: Leaving)
[10:30:55] *** geaden <geaden!~geaden@31.44.84.2> has joined #jenkins
[10:31:43] *** asaleh <asaleh!asaleh@nat/redhat/x-mmlxmupnqalmanwm> has quit IRC (Ping timeout: 256 seconds)
[10:32:37] *** thc202 <thc202!~thc202@unaffiliated/thc202> has joined #jenkins
[10:33:50] *** xmj <xmj!~xmj@freebsd/developer/xmj> has joined #jenkins
[10:33:52] <xmj> Hi
[10:34:27] <xmj> How do I wrangle an Active Choice Reactive Parameter Definition into a Jenkinsfile ParameterDefinition property?
[10:34:33] *** hkais <hkais!~xenoadmin@p2E562730.dip0.t-ipconnect.de> has quit IRC (Ping timeout: 264 seconds)
[10:34:39] <xmj> Google is quite scarce on that note
[10:36:46] *** blutwurst <blutwurst!~admin@p54822449.dip0.t-ipconnect.de> has joined #jenkins
[10:36:58] *** ggarcia <ggarcia!~gonzalo@host3.190-224-58.telecom.net.ar> has quit IRC (Quit: Leaving.)
[10:39:40] *** zerocoolback <zerocoolback!~zerocoolb@106.51.105.133> has joined #jenkins
[10:40:03] *** zerocoolback <zerocoolback!~zerocoolb@106.51.105.133> has quit IRC (Remote host closed the connection)
[10:40:18] *** lfitzgerald_ <lfitzgerald_!~lfitzgera@148.252.9.234> has joined #jenkins
[10:40:56] <floppydh> batmat: thanks!
[10:40:59] *** jrawling_ <jrawling_!~textual@cpc1-pnth3-2-0-cust856.know.cable.virginm.net> has joined #jenkins
[10:43:22] *** horsey <horsey!~horsey@122.167.94.70> has joined #jenkins
[10:45:01] *** Fufie <Fufie!~textual@235.190.249.62.customer.cdi.no> has quit IRC (Read error: Connection reset by peer)
[10:45:13] *** Fufie <Fufie!~textual@235.190.249.62.customer.cdi.no> has joined #jenkins
[10:45:27] *** jri <jri!~jri@193.54.67.94> has joined #jenkins
[10:46:15] *** asaleh <asaleh!asaleh@nat/redhat/x-gnhtlyydrcchzzbj> has joined #jenkins
[10:46:57] *** antgel <antgel!~topdog@ec2-34-207-142-82.compute-1.amazonaws.com> has quit IRC (Ping timeout: 240 seconds)
[10:48:02] *** horsey <horsey!~horsey@122.167.94.70> has quit IRC (Ping timeout: 256 seconds)
[10:48:40] *** shpoont <shpoont!~shpoont@bzq-84-108-23-10.cablep.bezeqint.net> has joined #jenkins
[10:48:51] *** antgel <antgel!~topdog@213.57.83.154> has joined #jenkins
[10:49:37] *** jri <jri!~jri@193.54.67.94> has quit IRC (Ping timeout: 248 seconds)
[10:51:45] *** shellac <shellac!~textual@cpc97476-aztw32-2-0-cust40.18-1.cable.virginm.net> has joined #jenkins
[10:52:40] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[10:53:29] *** venmx <venmx!~pactadmin@82-132-241-66.dab.02.net> has joined #jenkins
[10:53:34] *** dnusbaum <dnusbaum!sid256884@gateway/web/irccloud.com/x-oavtdpfycnfxuacf> has quit IRC (Ping timeout: 256 seconds)
[10:53:45] *** dnusbaum <dnusbaum!sid256884@gateway/web/irccloud.com/x-owsfsnkrqhslawew> has joined #jenkins
[10:56:11] *** grdryn <grdryn!~grdryn@fedora/gearoid> has joined #jenkins
[10:56:45] *** jri <jri!~jri@193.54.67.94> has joined #jenkins
[10:57:40] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Ping timeout: 256 seconds)
[10:58:13] *** jri <jri!~jri@193.54.67.94> has quit IRC (Client Quit)
[10:59:29] <floppydh> can't I make a function into a step without having it its own groovy-file and loading() it?
[10:59:50] *** asaleh <asaleh!asaleh@nat/redhat/x-gnhtlyydrcchzzbj> has quit IRC (Ping timeout: 276 seconds)
[11:01:47] *** asaleh <asaleh!asaleh@nat/redhat/x-bvhhagqdolhpsvtn> has joined #jenkins
[11:04:17] *** ohnx <ohnx!notohnx@unaffiliated/ohnx> has quit IRC (Read error: Connection reset by peer)
[11:04:41] *** vtunka <vtunka!vtunka@nat/redhat/x-gzpghihdswvvbrmc> has joined #jenkins
[11:05:36] *** vtunka <vtunka!vtunka@nat/redhat/x-gzpghihdswvvbrmc> has quit IRC (Client Quit)
[11:05:56] *** kfu <kfu!~kfu@unaffiliated/kfu> has joined #jenkins
[11:06:02] *** vtunka <vtunka!vtunka@nat/redhat/x-xafilqcbixlilnzt> has joined #jenkins
[11:07:04] *** ohnx <ohnx!notohnx@unaffiliated/ohnx> has joined #jenkins
[11:13:54] *** stormerider <stormerider!~morgan@unaffiliated/stormerider> has joined #jenkins
[11:18:27] *** zxv <zxv!~zcv@78.157.211.238> has quit IRC (Ping timeout: 240 seconds)
[11:20:24] *** zxc <zxc!~zcv@78.157.211.238> has joined #jenkins
[11:20:44] *** mrkake <mrkake!~kake@209.6.195.29> has quit IRC (Quit: ouch)
[11:24:13] *** venmx <venmx!~pactadmin@82-132-241-66.dab.02.net> has quit IRC (Ping timeout: 260 seconds)
[11:24:23] * xmj scratches head
[11:24:49] <xmj> is there a way I can just extract declarative pipeline properties from an existing job...?
[11:25:05] *** mrkake <mrkake!~kake@209.6.195.29> has joined #jenkins
[11:25:31] <xmj> I have the active Parameter thing set up nicely, now it's "merely" a matter of getting it into the Jenkinsfile
[11:26:13] *** venmx <venmx!~pactadmin@5.148.135.222> has joined #jenkins
[11:27:28] *** shpoont <shpoont!~shpoont@bzq-84-108-23-10.cablep.bezeqint.net> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[11:30:10] *** srinidhi1 <srinidhi1!~srinidhi@192.31.114.252> has joined #jenkins
[11:30:10] *** srinidhi <srinidhi!~srinidhi@opensuse/member/srinidhi> has quit IRC (Disconnected by services)
[11:30:17] *** venmx <venmx!~pactadmin@5.148.135.222> has quit IRC (Client Quit)
[11:30:33] *** venmx <venmx!~pactadmin@5.148.135.222> has joined #jenkins
[11:30:40] *** Furai <Furai!~Furai@cookiehoster.furai.pl> has quit IRC (Read error: Connection reset by peer)
[11:32:31] *** horsey <horsey!~horsey@122.167.94.70> has joined #jenkins
[11:32:49] *** narcan <narcan!~narcan@62-193-56-180.as16211.net> has quit IRC (Read error: Connection reset by peer)
[11:45:41] *** Furai <Furai!~Furai@cookiehoster.furai.pl> has joined #jenkins
[11:47:35] *** narcan <narcan!~narcan@62-193-56-180.as16211.net> has joined #jenkins
[11:47:42] *** narcan <narcan!~narcan@62-193-56-180.as16211.net> has quit IRC (Client Quit)
[11:47:50] *** dpl_ <dpl_!b2d7bebf@gateway/web/freenode/ip.178.215.190.191> has joined #jenkins
[11:49:00] *** dpl_ <dpl_!b2d7bebf@gateway/web/freenode/ip.178.215.190.191> has quit IRC (Client Quit)
[11:49:25] *** shpoont <shpoont!~shpoont@bzq-84-108-23-10.cablep.bezeqint.net> has joined #jenkins
[11:53:07] *** hkais <hkais!~xenoadmin@p3E9E8D47.dip0.t-ipconnect.de> has joined #jenkins
[11:53:31] *** dpl_ <dpl_!~dpl@ip-178-215-190-191.opensvit.ua> has joined #jenkins
[11:58:52] *** shellac <shellac!~textual@cpc97476-aztw32-2-0-cust40.18-1.cable.virginm.net> has quit IRC (Ping timeout: 256 seconds)
[12:03:31] *** jrawling_ <jrawling_!~textual@cpc1-pnth3-2-0-cust856.know.cable.virginm.net> has quit IRC (Ping timeout: 256 seconds)
[12:04:30] *** Phylock <Phylock!~Phylock@D4709623.rev.sefiber.dk> has joined #jenkins
[12:04:34] *** sundhell is now known as sundhell_away
[12:08:29] *** gli <gli!~gli@119.254.120.72> has quit IRC (Quit: Leaving)
[12:09:00] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[12:13:18] *** harisu____ <harisu____!uid137087@gateway/web/irccloud.com/x-volhlebvdfwizxks> has quit IRC (Quit: Connection closed for inactivity)
[12:19:23] *** philipgough <philipgough!~philipgou@148.252.9.234> has quit IRC (Remote host closed the connection)
[12:23:22] *** lucinka <lucinka!lvotypko@nat/redhat/x-cuuiojuvtntygtcd> has joined #jenkins
[12:24:51] *** drulli <drulli!~ulli@jenkins/developer/drulli> has quit IRC (Ping timeout: 240 seconds)
[12:35:34] *** asaleh <asaleh!asaleh@nat/redhat/x-bvhhagqdolhpsvtn> has quit IRC (Ping timeout: 256 seconds)
[12:38:15] *** srinidhi1 <srinidhi1!~srinidhi@192.31.114.252> has quit IRC (Ping timeout: 268 seconds)
[12:45:36] *** shpoont <shpoont!~shpoont@bzq-84-108-23-10.cablep.bezeqint.net> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[12:47:05] *** shpoont <shpoont!~shpoont@bzq-84-108-23-10.cablep.bezeqint.net> has joined #jenkins
[12:50:49] *** srinidhi <srinidhi!~srinidhi@opensuse/member/srinidhi> has joined #jenkins
[12:54:57] *** geaden <geaden!~geaden@31.44.84.2> has quit IRC (Read error: Connection reset by peer)
[12:55:17] *** jimklimov1 <jimklimov1!~jimklimov@31.7.243.238> has quit IRC (Read error: Connection reset by peer)
[12:55:47] *** jimklimov <jimklimov!~jimklimov@31.7.243.238> has joined #jenkins
[12:57:09] *** jimklimov <jimklimov!~jimklimov@31.7.243.238> has quit IRC (Read error: Connection reset by peer)
[13:00:37] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Remote host closed the connection)
[13:02:29] *** jimklimov <jimklimov!~jimklimov@31.7.243.238> has joined #jenkins
[13:02:57] *** zerok <zerok!~textual@pdpc/supporter/active/zerok> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[13:06:35] *** dsariel <dsariel!~dsariel@37.142.86.84> has quit IRC (Ping timeout: 276 seconds)
[13:12:04] *** konishi <konishi!~Takayuki@FL1-133-208-251-116.fko.mesh.ad.jp> has quit IRC (Quit: This computer has gone to sleep)
[13:20:54] *** dsariel <dsariel!~dsariel@37.142.86.84> has joined #jenkins
[13:25:01] *** geaden <geaden!~geaden@31.44.84.2> has joined #jenkins
[13:25:07] *** andyz <andyz!~andyz@77.240.4.245> has quit IRC (Ping timeout: 268 seconds)
[13:26:38] *** dsariel <dsariel!~dsariel@37.142.86.84> has quit IRC (Quit: Leaving)
[13:26:55] *** dsariel <dsariel!~dsariel@37.142.86.84> has joined #jenkins
[13:27:27] *** shpoont <shpoont!~shpoont@bzq-84-108-23-10.cablep.bezeqint.net> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[13:30:54] *** zerok <zerok!~textual@213.33.112.58> has joined #jenkins
[13:30:54] *** zerok <zerok!~textual@213.33.112.58> has quit IRC (Changing host)
[13:30:54] *** zerok <zerok!~textual@pdpc/supporter/active/zerok> has joined #jenkins
[13:32:09] *** shellac <shellac!~textual@137.222.244.83> has joined #jenkins
[13:33:30] <floppydh> I still fail to write a custom step within a Jenkinsfile
[13:33:53] *** Phylock <Phylock!~Phylock@D4709623.rev.sefiber.dk> has quit IRC (Ping timeout: 252 seconds)
[13:33:59] <floppydh> that I can put in a declarative-block, like: `steps { myCustomFunction "FOO" }`
[13:34:28] <floppydh> I see something via `load()` but that's not in the same file and also not working for whatever reason
[13:47:26] *** ujjain <ujjain!~ujjain@31.160.55.113> has quit IRC (Changing host)
[13:47:26] *** ujjain <ujjain!~ujjain@unaffiliated/ujjain> has joined #jenkins
[13:52:02] *** sabre1041 <sabre1041!~sabre1041@12.132.248.250> has joined #jenkins
[13:56:47] *** iocanel1 <iocanel1!~iocanel@ppp-94-65-12-153.home.otenet.gr> has joined #jenkins
[13:57:52] *** nsizemor <nsizemor!~Thunderbi@192.92.122.128> has joined #jenkins
[13:59:46] *** iocanel <iocanel!~iocanel@redhat/jboss/iocanel> has quit IRC (Ping timeout: 264 seconds)
[14:05:47] *** narcan <narcan!~narcan@LStLambert-656-1-281-209.w81-250.abo.wanadoo.fr> has joined #jenkins
[14:11:24] *** bmurt <bmurt!~hmm@216.164.232.97> has joined #jenkins
[14:11:45] *** jimklimov <jimklimov!~jimklimov@31.7.243.238> has quit IRC (Read error: Connection reset by peer)
[14:12:25] *** jimklimov <jimklimov!~jimklimov@31.7.243.238> has joined #jenkins
[14:14:23] *** jimklimov <jimklimov!~jimklimov@31.7.243.238> has quit IRC (Read error: Connection reset by peer)
[14:14:30] *** genunix <genunix!~filip@86-63-218-146.client.rionet.cz> has joined #jenkins
[14:14:36] *** jimklimov <jimklimov!~jimklimov@31.7.243.238> has joined #jenkins
[14:15:08] <genunix> not mine but I hit the same issue (trying to trigger pipelines in parallel from pipeline but only one job is triggered but multiple times)
[14:18:23] *** narcan <narcan!~narcan@LStLambert-656-1-281-209.w81-250.abo.wanadoo.fr> has quit IRC (Ping timeout: 256 seconds)
[14:21:17] *** sabre1041 <sabre1041!~sabre1041@12.132.248.250> has quit IRC (Remote host closed the connection)
[14:27:15] *** AaronDMarasco <AaronDMarasco!32cbf852@gateway/web/freenode/ip.50.203.248.82> has joined #jenkins
[14:28:23] <AaronDMarasco> Quick Groovy question: should an "assert" that fails cause currentBuild.currentResult set "FAILURE"? That's what I would excpect to happen, but in my catch block, it's set to "SUCCESS" still...
[14:28:52] <jimklimov> the result is not a string, but an object with string-like behaviors
[14:29:05] <jimklimov> in particular, it can only assume worse and worse verdicts
[14:29:20] *** davehunt <davehunt!~davehunt@88.97.12.57> has joined #jenkins
[14:29:28] <jimklimov> and only from a set of predefined values, I guess
[14:29:44] *** binaryking <binaryking!uid19295@gateway/web/irccloud.com/x-dgdtcwhhyfgqllvp> has joined #jenkins
[14:29:58] <jimklimov> so if someone set it to "FAILURE", you can not reset it to "SUCCESS" - at least not via string assignment (maybe there are other ways, gotta look in code)
[14:30:34] <jimklimov> so you can write currentBuild.currentResult="SUCCESS" but it will be silently ignored in that case
[14:30:56] *** ldnunes <ldnunes!~ldnunes_@181.220.79.73> has joined #jenkins
[14:30:57] <jimklimov> and also, if you have try/catch, then you must set the result yourself
[14:31:15] *** philipgough <philipgough!~philipgou@148.252.9.234> has joined #jenkins
[14:31:17] <jimklimov> e.g. you can do try/catch specifically to not fail the build on certain failed steps
[14:31:34] <jimklimov> or to set the result to just UNSTABLE
[14:33:29] <jimklimov> if you don't have your own try/catch, then the pipeline's default one kicks in and sets the status and quits the job ASAP (skips yet-unstarted stages, but I think does not abort any already-running ones)
[14:33:58] <jimklimov> and of course it breaks out of the execution of current stage just after the failed step
[14:34:17] *** jimklimov <jimklimov!~jimklimov@31.7.243.238> has quit IRC (Read error: Connection reset by peer)
[14:34:38] *** jimklimov <jimklimov!~jimklimov@31.7.243.238> has joined #jenkins
[14:34:52] <jimklimov> so if your stages require a clean-up in any case, you can use a post{failure{...}} handler after steps in a stage or for a whole pipeline
[14:35:08] *** alcohol <alcohol!~alcohol@unaffiliated/alcohol> has quit IRC (Quit: rebooting)
[14:35:23] *** drichtar <drichtar!drichtar@nat/redhat/x-klpzdtqfilhuohba> has joined #jenkins
[14:35:55] *** alcohol <alcohol!~alcohol@unaffiliated/alcohol> has joined #jenkins
[14:38:23] *** Julian___ <Julian___!9536ce4e@gateway/web/freenode/ip.149.54.206.78> has joined #jenkins
[14:41:29] *** trepatud- <trepatud-!~SDig@5.196.50.27> has quit IRC (Ping timeout: 276 seconds)
[14:44:27] *** Julian___ <Julian___!9536ce4e@gateway/web/freenode/ip.149.54.206.78> has quit IRC (Quit: Page closed)
[14:46:26] *** electrofelix <electrofelix!~pelix@15.203.233.77> has quit IRC (Quit: Leaving.)
[14:46:37] *** asaleh <asaleh!~asaleh@176.74.129.137> has joined #jenkins
[14:49:04] *** esran <esran!~shamus150@46.17.164.68> has joined #jenkins
[14:55:02] <AaronDMarasco> jimklimov: Thanks for the input. I know it's not a string per se, but it was unexpected that by time it got that far in my catch (actually finally) clause, it was still thinking things went well.
[14:59:48] *** ogondza_ <ogondza_!ogondza@nat/redhat/x-ehivrrmtksdozhui> has joined #jenkins
[15:01:47] *** bmurt <bmurt!~hmm@216.164.232.97> has quit IRC (Quit: Textual IRC Client: www.textualapp.com)
[15:02:12] *** ogondza <ogondza!ogondza@nat/redhat/x-bdpydripqlmgnnxq> has quit IRC (Ping timeout: 246 seconds)
[15:03:09] *** nsizemor <nsizemor!~Thunderbi@192.92.122.128> has quit IRC (Quit: nsizemor)
[15:03:15] *** inovas <inovas!~inovas@47.63.73.120> has quit IRC (Read error: Connection reset by peer)
[15:03:39] *** nsizemor <nsizemor!~Thunderbi@192.92.122.128> has joined #jenkins
[15:03:40] *** inovas <inovas!~inovas@47.63.73.120> has joined #jenkins
[15:07:12] *** bmurt <bmurt!~hmm@216.164.232.97> has joined #jenkins
[15:11:25] <jimklimov> well, it is either your catch setting the value (or not), or the default one
[15:12:07] <jimklimov> so trying, failing, throwing expection and going into a catch immediately - nobody sets that value between fail, throw and catch
[15:12:12] <jimklimov> it is up th the catch handler
[15:16:15] *** harisu____ <harisu____!uid137087@gateway/web/irccloud.com/x-qofpkhocugcxqncu> has joined #jenkins
[15:17:26] *** rsmith_cloudbees <rsmith_cloudbees!~rsmith_cl@71-212-235-226.hlrn.qwest.net> has joined #jenkins
[15:17:59] *** jflynn <jflynn!~jflynn@cpe-70-122-28-120.austin.res.rr.com> has joined #jenkins
[15:20:18] *** rajpratik71 <rajpratik71!~semicode@47.247.26.130> has joined #jenkins
[15:25:49] *** antgel <antgel!~topdog@213.57.83.154> has quit IRC (Ping timeout: 256 seconds)
[15:27:38] *** antgel <antgel!~topdog@ec2-34-207-142-82.compute-1.amazonaws.com> has joined #jenkins
[15:28:17] *** zarzar <zarzar!~zarzar@184.75.233.58> has quit IRC (Read error: Connection reset by peer)
[15:28:30] *** esberglu <esberglu!~esberglu@2620:1f7:890:4c01::31:276> has joined #jenkins
[15:29:59] *** kfu <kfu!~kfu@unaffiliated/kfu> has quit IRC (Quit: Leaving)
[15:31:05] *** akostadinov <akostadinov!~avalon@redhat/jboss/akostadinov> has quit IRC (Ping timeout: 240 seconds)
[15:32:15] *** LordLion <LordLion!uid31081@wrongplanet/lordlion> has quit IRC ()
[15:34:02] *** abayer <abayer!~abayer@jenkins/developer/abayer> has joined #jenkins
[15:34:02] *** ChanServ sets mode: +o abayer
[15:38:28] *** rajpratik71 <rajpratik71!~semicode@47.247.26.130> has quit IRC (Quit: rajpratik71)
[15:38:44] *** douglas_ <douglas_!douglas@nat/redhat/x-zmauxqeojhtlwgyg> has joined #jenkins
[15:38:52] *** Herodot <Herodot!5b4363b6@gateway/web/freenode/ip.91.67.99.182> has joined #jenkins
[15:39:04] *** shpoont <shpoont!~shpoont@bzq-84-108-23-10.cablep.bezeqint.net> has joined #jenkins
[15:39:05] *** vtunka <vtunka!vtunka@nat/redhat/x-xafilqcbixlilnzt> has quit IRC (Quit: Leaving)
[15:39:25] *** ogondza_ <ogondza_!ogondza@nat/redhat/x-ehivrrmtksdozhui> has quit IRC (Ping timeout: 256 seconds)
[15:40:11] *** asaleh <asaleh!~asaleh@176.74.129.137> has quit IRC (Ping timeout: 256 seconds)
[15:40:54] *** jimklimov <jimklimov!~jimklimov@31.7.243.238> has quit IRC (Read error: Connection reset by peer)
[15:41:18] *** niab <niab!~disc@unaffiliated/niab> has joined #jenkins
[15:41:26] *** jimklimov <jimklimov!~jimklimov@31.7.243.238> has joined #jenkins
[15:41:36] *** rajpratik71 <rajpratik71!~semicode@47.247.98.160> has joined #jenkins
[15:44:54] *** rajpratik71 <rajpratik71!~semicode@47.247.98.160> has quit IRC (Remote host closed the connection)
[15:47:38] *** vtunka <vtunka!vtunka@nat/redhat/x-erghihvmeyysurvk> has joined #jenkins
[15:47:59] *** rajpratik71 <rajpratik71!~semicode@47.247.26.130> has joined #jenkins
[15:48:26] *** JasonCL <JasonCL!~JasonCL@129.33.253.144> has joined #jenkins
[15:48:54] *** watsonjar2 <watsonjar2!~watsonjar@wsip-70-184-75-76.tc.ph.cox.net> has joined #jenkins
[15:50:52] *** minot <minot!~kus@ns3.queenslibrary.org> has joined #jenkins
[15:52:12] *** JasonCL <JasonCL!~JasonCL@129.33.253.144> has quit IRC (Remote host closed the connection)
[15:52:20] *** watsonjar3 <watsonjar3!~watsonjar@wsip-70-184-75-76.tc.ph.cox.net> has quit IRC (Ping timeout: 276 seconds)
[15:52:49] *** JasonCL <JasonCL!~JasonCL@129.33.253.144> has joined #jenkins
[15:54:41] *** jstrachan <jstrachan!~jstrachan@host86-128-128-164.range86-128.btcentralplus.com> has quit IRC (Ping timeout: 248 seconds)
[15:55:53] *** JasonCL <JasonCL!~JasonCL@129.33.253.144> has quit IRC (Remote host closed the connection)
[15:56:06] *** JasonCL <JasonCL!~JasonCL@129.33.253.144> has joined #jenkins
[15:57:16] *** zarzar <zarzar!~zarzar@vpn.noregon.com> has joined #jenkins
[15:58:14] *** Herodot <Herodot!5b4363b6@gateway/web/freenode/ip.91.67.99.182> has quit IRC (Ping timeout: 260 seconds)
[15:58:59] *** JasonCL <JasonCL!~JasonCL@129.33.253.144> has quit IRC (Remote host closed the connection)
[15:59:46] *** cr3 <cr3!~cr3@207.107.68.234> has joined #jenkins
[16:00:08] *** rajpratik71 <rajpratik71!~semicode@47.247.26.130> has quit IRC (Quit: rajpratik71)
[16:01:26] *** shpoont <shpoont!~shpoont@bzq-84-108-23-10.cablep.bezeqint.net> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[16:01:31] *** tterrag|alt <tterrag|alt!~tterrag@tterrag.com> has quit IRC (Quit: *poof*)
[16:03:03] *** morenoh149 <morenoh149!~hmoreno@4.30.90.116> has joined #jenkins
[16:03:15] *** xmaddness <xmaddness!c688dc02@gateway/web/cgi-irc/kiwiirc.com/ip.198.136.220.2> has joined #jenkins
[16:03:17] *** rajpratik71 <rajpratik71!~semicode@47.247.98.160> has joined #jenkins
[16:03:30] *** xmaddness <xmaddness!c688dc02@gateway/web/cgi-irc/kiwiirc.com/ip.198.136.220.2> has quit IRC (Changing host)
[16:03:30] *** xmaddness <xmaddness!c688dc02@unaffiliated/xmaddness> has joined #jenkins
[16:03:30] *** xmaddness <xmaddness!c688dc02@unaffiliated/xmaddness> has quit IRC (Changing host)
[16:03:30] *** xmaddness <xmaddness!c688dc02@gateway/web/cgi-irc/kiwiirc.com/ip.198.136.220.2> has joined #jenkins
[16:04:48] *** Phylock <Phylock!~Phylock@D4709623.rev.sefiber.dk> has joined #jenkins
[16:06:02] *** jstrachan <jstrachan!~jstrachan@host86-128-131-211.range86-128.btcentralplus.com> has joined #jenkins
[16:06:59] *** amodi <amodi!~amodi@cpe-2606-A000-4541-4000-0-0-0-8.dyn6.twc.com> has joined #jenkins
[16:07:07] *** JasonCL <JasonCL!~JasonCL@129.33.253.144> has joined #jenkins
[16:09:25] *** Phylock <Phylock!~Phylock@D4709623.rev.sefiber.dk> has quit IRC (Ping timeout: 246 seconds)
[16:11:28] *** rajpratik71 <rajpratik71!~semicode@47.247.98.160> has quit IRC (Remote host closed the connection)
[16:11:40] *** konishi <konishi!~Takayuki@FL1-133-208-251-116.fko.mesh.ad.jp> has joined #jenkins
[16:12:23] *** JasonCL <JasonCL!~JasonCL@129.33.253.144> has quit IRC (Ping timeout: 260 seconds)
[16:13:13] *** JasonCL <JasonCL!~JasonCL@129.33.253.144> has joined #jenkins
[16:14:03] *** sbuj <sbuj!~sbuj@2601:200:c000:dbaa:dc89:7740:8fd7:b607> has joined #jenkins
[16:14:34] *** rajpratik71 <rajpratik71!~semicode@47.247.26.130> has joined #jenkins
[16:15:20] *** vtunka_ <vtunka_!vtunka@nat/redhat/x-xkhludcvkdwjdytc> has joined #jenkins
[16:16:42] *** vide <vide!~vide@146.red-81-47-169.staticip.rima-tde.net> has joined #jenkins
[16:17:04] *** jflynn <jflynn!~jflynn@cpe-70-122-28-120.austin.res.rr.com> has quit IRC (Read error: Connection reset by peer)
[16:17:42] *** vtunka <vtunka!vtunka@nat/redhat/x-erghihvmeyysurvk> has quit IRC (Ping timeout: 245 seconds)
[16:18:41] *** vide <vide!~vide@146.red-81-47-169.staticip.rima-tde.net> has quit IRC (Client Quit)
[16:19:42] *** majestic <majestic!~majestic@gateway/tor-sasl/majestic> has quit IRC (Remote host closed the connection)
[16:20:06] *** vide <vide!~vide@146.red-81-47-169.staticip.rima-tde.net> has joined #jenkins
[16:20:17] *** majestic <majestic!~majestic@gateway/tor-sasl/majestic> has joined #jenkins
[16:23:26] <vide> as a workaround: is there a way to have GH OAuth in place but still use local auth mechanism for a certain user?
[16:24:04] *** jojo__ <jojo__!2e190180@gateway/web/freenode/ip.46.25.1.128> has joined #jenkins
[16:24:28] *** JasonCL <JasonCL!~JasonCL@129.33.253.144> has quit IRC (Ping timeout: 246 seconds)
[16:25:14] *** Ponury_Typ <Ponury_Typ!~Ponury_Ty@aqf47.neoplus.adsl.tpnet.pl> has quit IRC (Quit: Leaving)
[16:25:35] *** trepatudo <trepatudo!~SDig@5.196.50.27> has joined #jenkins
[16:25:59] *** villav <villav!~Thunderbi@72-54-189-186.customerip.birch.net> has joined #jenkins
[16:26:17] *** rajpratik71 <rajpratik71!~semicode@47.247.26.130> has quit IRC (Quit: rajpratik71)
[16:28:53] *** tterrag <tterrag!~tterrag@tterrag.com> has joined #jenkins
[16:29:22] *** rajpratik71 <rajpratik71!~semicode@47.247.26.130> has joined #jenkins
[16:29:58] *** JasonCL <JasonCL!~JasonCL@129.33.253.144> has joined #jenkins
[16:35:27] *** JasonCL <JasonCL!~JasonCL@129.33.253.144> has quit IRC (Ping timeout: 240 seconds)
[16:36:16] *** minot <minot!~kus@ns3.queenslibrary.org> has quit IRC (Quit: I guess the computer is restarting? What is going on?)
[16:37:41] *** jflynn <jflynn!~jflynn@cpe-70-122-28-120.austin.res.rr.com> has joined #jenkins
[16:38:35] *** jflynn <jflynn!~jflynn@cpe-70-122-28-120.austin.res.rr.com> has quit IRC (Client Quit)
[16:38:57] *** jflynn <jflynn!~jflynn@cpe-70-122-28-120.austin.res.rr.com> has joined #jenkins
[16:39:13] *** rajpratik71 <rajpratik71!~semicode@47.247.26.130> has quit IRC (Quit: rajpratik71)
[16:41:59] *** dpl_ <dpl_!~dpl@ip-178-215-190-191.opensvit.ua> has quit IRC (Remote host closed the connection)
[16:42:08] *** rajpratik71 <rajpratik71!~semicode@47.247.98.160> has joined #jenkins
[16:43:15] *** Ponury_Typ <Ponury_Typ!~Ponury_Ty@aqf47.neoplus.adsl.tpnet.pl> has joined #jenkins
[16:43:17] <floppydh> can someone hold my hand and tell me how I can write a custom-step-function I can use in a declarative block? :/
[16:44:18] *** csanchez <csanchez!~csanchez@171.107.27.77.dynamic.reverse-mundo-r.com> has quit IRC (Remote host closed the connection)
[16:44:32] *** csanchez <csanchez!~csanchez@171.107.27.77.dynamic.reverse-mundo-r.com> has joined #jenkins
[16:44:42] *** csanchez <csanchez!~csanchez@171.107.27.77.dynamic.reverse-mundo-r.com> has quit IRC (Remote host closed the connection)
[16:47:05] *** rajpratik71 <rajpratik71!~semicode@47.247.98.160> has quit IRC (Remote host closed the connection)
[16:48:49] *** sbuj <sbuj!~sbuj@2601:200:c000:dbaa:dc89:7740:8fd7:b607> has quit IRC (Quit: sbuj)
[16:49:58] *** rajpratik71 <rajpratik71!~semicode@47.247.26.130> has joined #jenkins
[16:53:16] *** caphrim007_ <caphrim007_!~caphrim00@50.206.82.181> has quit IRC (Remote host closed the connection)
[16:53:58] *** caphrim007 <caphrim007!~caphrim00@c-98-247-99-172.hsd1.wa.comcast.net> has joined #jenkins
[16:55:23] <floppydh> ewwww... that seems super complicated, I guess i just wrap my function in `script { }` instead
[16:55:32] *** sbuj <sbuj!~sbuj@2601:200:c000:dbaa:ec35:e212:3472:aba8> has joined #jenkins
[16:55:32] *** vtunka_ <vtunka_!vtunka@nat/redhat/x-xkhludcvkdwjdytc> has quit IRC (Quit: Leaving)
[16:55:39] *** jimklimov <jimklimov!~jimklimov@31.7.243.238> has quit IRC (Read error: Connection reset by peer)
[16:56:24] *** jimklimov <jimklimov!~jimklimov@31.7.243.238> has joined #jenkins
[16:57:07] *** zerok <zerok!~textual@pdpc/supporter/active/zerok> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[16:57:10] <rtyler> floppydh: if you're trying to invoke a dotted-method i.e. someclass.method() that's not going to work in the steps {} declaration
[16:57:15] *** Ponury_Typ2 <Ponury_Typ2!Ponury_Typ@gateway/vpn/privateinternetaccess/ponurytyp/x-91195712> has joined #jenkins
[16:57:29] <rtyler> I use callable "global variables" (really, they're custom steps) in declarative all the time
[16:57:41] <floppydh> rtyler: I just have some def that does some things and I want to call it in a steps block without wrapping a script block around it
[16:57:45] *** JasonCL <JasonCL!~JasonCL@129.33.253.140> has joined #jenkins
[16:58:11] <floppydh> at top-level I have `def foo(bar) { ... }`
[16:58:38] *** caphrim007 <caphrim007!~caphrim00@c-98-247-99-172.hsd1.wa.comcast.net> has quit IRC (Ping timeout: 276 seconds)
[16:58:56] <floppydh> and I want to write `foo "someStr"` in a steps block instead of wrapping it in a script-block
[16:59:08] <rtyler> where is that method defined?
[16:59:15] <floppydh> locally in the Jenkinsfile
[16:59:18] <floppydh> at top-level
[16:59:23] *** vtunka <vtunka!vtunka@nat/redhat/x-jqrqkaytehqppkal> has joined #jenkins
[16:59:23] <floppydh> outside of the pipeline {} block
[16:59:37] <rtyler> abayer: that "feature" is going to haunt you for ever :P
[17:00:01] <abayer> rtyler: Hey, I've made it clear that's not officially supported and I reserve the right to kill it at any time. =)
[17:00:20] <abayer> That said, it should work as of now.
[17:00:26] <abayer> But don't do it. =)
[17:00:31] <abayer> Shared libraries are your friend.
[17:00:48] *** Ponury_Typ <Ponury_Typ!~Ponury_Ty@aqf47.neoplus.adsl.tpnet.pl> has quit IRC (Ping timeout: 260 seconds)
[17:01:28] *** JasonCL <JasonCL!~JasonCL@129.33.253.140> has quit IRC (Remote host closed the connection)
[17:02:18] *** JasonCL <JasonCL!~JasonCL@129.33.253.140> has joined #jenkins
[17:02:33] *** denimsoft <denimsoft!~textual@cpc115988-dals23-2-0-cust224.20-2.cable.virginm.net> has joined #jenkins
[17:03:00] <floppydh> shared libs for my "problem"? I want the method to be local to the jenkinsfile and don't feel it is "general" enough to be put into a shared-lib :/?
[17:03:18] <floppydh> but I'm good with a: it doesn't work like this :>
[17:03:34] *** rsmith_cloudbees <rsmith_cloudbees!~rsmith_cl@71-212-235-226.hlrn.qwest.net> has left #jenkins
[17:03:34] *** jojo__ <jojo__!2e190180@gateway/web/freenode/ip.46.25.1.128> has quit IRC (Ping timeout: 260 seconds)
[17:04:24] <rtyler> floppydh: I'm curious why you feel the need to define a method?
[17:04:42] *** JasonCL <JasonCL!~JasonCL@129.33.253.140> has quit IRC (Remote host closed the connection)
[17:04:58] *** JasonCL <JasonCL!~JasonCL@129.33.253.140> has joined #jenkins
[17:06:10] *** rajpratik71 <rajpratik71!~semicode@47.247.26.130> has quit IRC (Quit: rajpratik71)
[17:06:36] *** JasonCL <JasonCL!~JasonCL@129.33.253.140> has quit IRC (Remote host closed the connection)
[17:07:03] <floppydh> rtyler: I basically do a list comprehension to assemble a bunch of `checkout` calls with default things like credentialsId and also "building" the excludedRegions string from a bunch of arrays/lists and the like
[17:07:27] <rtyler> ah, okay, do you need to invoke that same thing multiple times?
[17:07:49] <floppydh> rtyler: in my current view only once and I pass a list of "dictionaries" to it
[17:08:11] *** JasonCL <JasonCL!~JasonCL@129.33.253.140> has joined #jenkins
[17:08:50] <rtyler> you could just include that 'method body' in a script{} block within the Declarative Pipeline then
[17:09:05] *** rajpratik71 <rajpratik71!~semicode@47.247.98.160> has joined #jenkins
[17:09:45]
*** Tomasu <Tomasu!~Tomasu@tomasu.net> has quit IRC (Quit: ZNC - http://znc.in)
[17:10:03] <floppydh> rtyler: agreed, but I do this checkoutWithDefaults conditionally in multiple stages, also it reads much better
[17:11:10] *** JasonCL <JasonCL!~JasonCL@129.33.253.140> has quit IRC (Remote host closed the connection)
[17:11:25] <floppydh> but I'll just wrap it in a script block for now
[17:11:29] <floppydh> ain't the worst thing I guess
[17:11:44] *** JasonCL <JasonCL!~JasonCL@129.33.253.140> has joined #jenkins
[17:12:53] <rtyler> per abayer's comment, defining a method outside of the pipeline { } is considered unsupported and may break in future releases
[17:13:50] *** AaronDMarasco <AaronDMarasco!32cbf852@gateway/web/freenode/ip.50.203.248.82> has quit IRC (Quit: Page closed)
[17:13:55] <floppydh> rtyler: I see :/ - guess I put it in a shared lib then
[17:14:19] <floppydh> or can I def it within a pipeline block instead?
[17:14:48] *** rajpratik71 <rajpratik71!~semicode@47.247.98.160> has quit IRC (Ping timeout: 260 seconds)
[17:17:15] *** Tomasu <Tomasu!~Tomasu@tomasu.net> has joined #jenkins
[17:17:37] <abayer> no, you can't.
[17:18:00] *** mbenson <mbenson!~mbenson@apache/committer/mbenson> has joined #jenkins
[17:18:29] <floppydh> thanks for clearing that up
[17:18:39] *** drichtar <drichtar!drichtar@nat/redhat/x-klpzdtqfilhuohba> has quit IRC (Ping timeout: 252 seconds)
[17:18:57] *** JasonCL <JasonCL!~JasonCL@129.33.253.140> has quit IRC (Ping timeout: 248 seconds)
[17:19:40] <Slide-O-Mix> mornin!
[17:21:47] <rtyler> o/
[17:22:34] <batmat> \o
[17:23:26] <Slide-O-Mix> ah, another day of banging my head against this problem at work
[17:23:35] <Slide-O-Mix> always nice to look forward to days like this...
[17:24:05] * rtyler hands Slide-O-Mix a helmet
[17:24:18] *** Rapture <Rapture!~textual@50-204-232-30-static.hfc.comcastbusiness.net> has joined #jenkins
[17:25:11] *** drulli <drulli!~ulli@jenkins/developer/drulli> has joined #jenkins
[17:25:11] *** ChanServ sets mode: +v drulli
[17:30:02] *** KaibutsuX <KaibutsuX!~KaibutsuX@184.18.48.184> has quit IRC (Quit: leaving)
[17:30:22] *** KaibutsuX <KaibutsuX!~KaibutsuX@184.18.48.184> has joined #jenkins
[17:31:27] <ses1984> in a jenkinsfile multi branch pipeline, if i have a job configured to discover branches that are filed as PRs, can i configure jenkins to automatically try to re-run the build if the base branch updates?
[17:32:17] *** jds_ <jds_!uid14340@gateway/web/irccloud.com/x-vnqyynigclbqhmmp> has joined #jenkins
[17:36:06] *** vjuranek_ <vjuranek_!~vjuranek@redhat/jboss/vjuranek> has quit IRC (Ping timeout: 268 seconds)
[17:39:22] *** sabre1041 <sabre1041!~sabre1041@75.104.71.209> has joined #jenkins
[17:39:45] <rtyler> ses1984: why yes you can!
[17:44:47] *** fandi <fandi!~fandi@112.78.178.2> has joined #jenkins
[17:44:59] *** fandi_ <fandi_!~fandi@112.78.178.2> has joined #jenkins
[17:47:19] *** JasonCL <JasonCL!~JasonCL@129.33.253.140> has joined #jenkins
[17:49:13] *** rajpratik71 <rajpratik71!~semicode@47.247.98.160> has joined #jenkins
[17:49:32] *** ldnunes <ldnunes!~ldnunes_@181.220.79.73> has quit IRC (Read error: Connection reset by peer)
[17:50:06] *** ldnunes <ldnunes!~ldnunes_@181.220.79.73> has joined #jenkins
[17:50:35] *** cristiano <cristiano!~cris@pdpc/supporter/active/cristiano> has joined #jenkins
[17:50:45] *** JasonCL <JasonCL!~JasonCL@129.33.253.140> has quit IRC (Remote host closed the connection)
[17:50:45] *** ranreply <ranreply!c62d1371@gateway/web/freenode/ip.198.45.19.113> has joined #jenkins
[17:51:00] *** cristiano <cristiano!~cris@pdpc/supporter/active/cristiano> has quit IRC (Client Quit)
[17:51:57] *** ghormoon <ghormoon!~ghormoon@ghorland.net> has quit IRC (Ping timeout: 264 seconds)
[17:52:09] *** KaibutsuX <KaibutsuX!~KaibutsuX@184.18.48.184> has quit IRC (Quit: leaving)
[17:52:26] *** KaibutsuX <KaibutsuX!~KaibutsuX@184.18.48.184> has joined #jenkins
[17:52:48] <ranreply> hey folks
[17:53:00] <ranreply> iam trying to run jenkins on a instance in aws
[17:53:26] <ranreply> my manager has said that he has installed jenkins on a instnace and he gave the ip
[17:53:41] *** ghormoon <ghormoon!~ghormoon@ghorland.net> has joined #jenkins
[17:53:50] <ranreply> when connect to the ip i get errors
[17:54:07] <ranreply> followin the the erro
[17:54:08] <ranreply> Disconnected: No supported authentication methods available (server sent: publickey,gssapi-keyex,gssapi-with-mic)
[17:54:14] <ranreply> can any one through light
[17:54:49] *** JasonCL <JasonCL!~JasonCL@129.33.253.140> has joined #jenkins
[17:54:51] *** shellac <shellac!~textual@137.222.244.83> has quit IRC (Ping timeout: 240 seconds)
[17:55:43] *** teotwaki <teotwaki!~teotwaki@Maemo/community/contributor/crashanddie> has joined #jenkins
[17:57:07] *** vtunka <vtunka!vtunka@nat/redhat/x-jqrqkaytehqppkal> has quit IRC (Quit: Leaving)
[17:58:20] *** cmuller <cmuller!~cmuller@134.117.39.62.rev.sfr.net> has quit IRC (Quit: Leaving)
[17:58:24] *** Slide-O-Mix <Slide-O-Mix!~slide@2604:a880:1:20::258:1001> has quit IRC (Quit: WeeChat 1.4)
[17:59:21] *** philipgough <philipgough!~philipgou@148.252.9.234> has quit IRC (Ping timeout: 240 seconds)
[18:02:51] *** jimklimov <jimklimov!~jimklimov@31.7.243.238> has quit IRC (Ping timeout: 240 seconds)
[18:03:07] *** Everspace <Everspace!~Everspace@s207-81-209-154.bc.hsia.telus.net> has joined #jenkins
[18:05:03] <Everspace> Hello, I'm currently having some problems with writing a step that runs some commands in a different container that is assumed to be on the machine already. How do I work with this, or perhaps, what is the correct way to go about the following
[18:05:25] <Everspace> (currently typing up an explanation)
[18:10:18] *** rajpratik71 <rajpratik71!~semicode@47.247.98.160> has quit IRC (Quit: rajpratik71)
[18:11:20] *** firemanxbr <firemanxbr!~firemanxb@2a00:1028:83a0:191e:b37e:981e:b4c0:3c0d> has quit IRC (Quit: Leaving)
[18:12:21] *** dsariel <dsariel!~dsariel@37.142.86.84> has quit IRC (Ping timeout: 265 seconds)
[18:13:04] *** rajpratik71 <rajpratik71!~semicode@47.247.55.50> has joined #jenkins
[18:13:41] *** caphrim007 <caphrim007!~caphrim00@50.206.82.144> has joined #jenkins
[18:16:08] *** sabre104_ <sabre104_!~sabre1041@75.104.71.209> has joined #jenkins
[18:16:21] *** rajpratik71 <rajpratik71!~semicode@47.247.55.50> has quit IRC (Remote host closed the connection)
[18:16:21] *** amodi <amodi!~amodi@cpe-2606-A000-4541-4000-0-0-0-8.dyn6.twc.com> has quit IRC (Ping timeout: 240 seconds)
[18:18:02] *** sabre1041 <sabre1041!~sabre1041@75.104.71.209> has quit IRC (Ping timeout: 268 seconds)
[18:18:34] *** KaibutsuX <KaibutsuX!~KaibutsuX@184.18.48.184> has quit IRC (Quit: leaving)
[18:19:04] *** rajpratik71 <rajpratik71!~semicode@47.247.55.50> has joined #jenkins
[18:19:23] *** KaibutsuX <KaibutsuX!~KaibutsuX@184.18.48.184> has joined #jenkins
[18:23:52] *** Slide-O-Mix <Slide-O-Mix!~slide@2604:a880:1:20::258:1001> has joined #jenkins
[18:23:52] *** ChanServ sets mode: +v Slide-O-Mix
[18:23:56] *** rvgate <rvgate!~rvgate@unaffiliated/rvgate> has joined #jenkins
[18:24:21] *** lfitzgerald_ <lfitzgerald_!~lfitzgera@148.252.9.234> has quit IRC (Ping timeout: 265 seconds)
[18:24:43] <tang^> ranreply: did he also give you the private key for that instance?
[18:24:47] *** rvgate <rvgate!~rvgate@unaffiliated/rvgate> has quit IRC (Max SendQ exceeded)
[18:25:26] *** rvgate <rvgate!~rvgate@unaffiliated/rvgate> has joined #jenkins
[18:25:46] <rvgate> is it possible to skip a job if the job is already running, and simply wait for the next build trigger instead of adding it to the queue?
[18:26:19] <tang^> rvgate: generally, you need a long quiet period for that behaviour. I'm not sure of other solutions, though
[18:26:38] *** rvgate <rvgate!~rvgate@unaffiliated/rvgate> has quit IRC (Max SendQ exceeded)
[18:26:41] *** grdryn <grdryn!~grdryn@fedora/gearoid> has quit IRC (Quit: Leaving 🥚)
[18:27:14] <ranreply> tang : he did not give any . However for another 2 instance he has asked me to generate a key and he added to those instance and i was able to ssh to them
[18:27:27] <ranreply> tang: I expected the same to happen
[18:27:33] <ranreply> however it was asking for uid
[18:27:42] <tang^> ranreply: he did not request it this time?
[18:27:59] <tang^> aws requires keys
[18:28:49] *** Py_mona <Py_mona!~Mona@unaffiliated/kumudini> has quit IRC (Quit: Konversation terminated!)
[18:29:21] *** niab <niab!~disc@unaffiliated/niab> has quit IRC (Quit: WeeChat 1.4)
[18:30:47] <ses1984> rtyler: thanks!
[18:31:50] <ranreply> tang: I thought he will use the same keys i gave before
[18:32:06] <ranreply> tang: However from the error message i guess that was not the case
[18:32:17] *** seschwar <seschwar!~seschwar@unaffiliated/seschwar> has quit IRC (Quit: :wq)
[18:33:49] *** rajpratik71 <rajpratik71!~semicode@47.247.55.50> has quit IRC (Quit: rajpratik71)
[18:34:31] *** esran <esran!~shamus150@46.17.164.68> has quit IRC (Quit: Heading Home!)
[18:36:36] *** rajpratik71 <rajpratik71!~semicode@47.247.55.50> has joined #jenkins
[18:36:53] *** JasonCL <JasonCL!~JasonCL@129.33.253.140> has quit IRC (Remote host closed the connection)
[18:37:00] *** drichtar <drichtar!drichtar@nat/redhat/x-smshwjxipdamqygi> has joined #jenkins
[18:38:33] *** JasonCL <JasonCL!~JasonCL@129.33.253.140> has joined #jenkins
[18:40:37] <tang^> it was not the case, indeed
[18:43:43] *** JasonCL <JasonCL!~JasonCL@129.33.253.140> has quit IRC (Ping timeout: 252 seconds)
[18:43:44] *** rajpratik71 <rajpratik71!~semicode@47.247.55.50> has quit IRC (Quit: rajpratik71)
[18:46:29] *** rajpratik71 <rajpratik71!~semicode@47.247.55.50> has joined #jenkins
[18:46:52] *** luc4 <luc4!~luca@ip-28-60.sn2.clouditalia.com> has quit IRC (Quit: luc4)
[18:49:04] *** JasonCL <JasonCL!~JasonCL@129.33.253.140> has joined #jenkins
[18:49:10] *** mikado <mikado!574eeffc@gateway/web/freenode/ip.87.78.239.252> has joined #jenkins
[18:49:37] *** sabre104_ <sabre104_!~sabre1041@75.104.71.209> has quit IRC (Remote host closed the connection)
[18:55:51] *** JasonCL <JasonCL!~JasonCL@129.33.253.140> has quit IRC (Read error: Connection reset by peer)
[18:56:08] *** JasonCL <JasonCL!~JasonCL@129.33.253.140> has joined #jenkins
[18:57:25] *** JasonCL <JasonCL!~JasonCL@129.33.253.140> has quit IRC (Remote host closed the connection)
[18:58:09] *** venmx <venmx!~pactadmin@5.148.135.222> has quit IRC (Ping timeout: 248 seconds)
[18:58:31] *** harisu____ <harisu____!uid137087@gateway/web/irccloud.com/x-qofpkhocugcxqncu> has quit IRC (Quit: Connection closed for inactivity)
[18:59:59] *** jhatoms <jhatoms!~jthomas@235.235.136.95.rev.sfr.net> has joined #jenkins
[19:00:07] *** rajpratik71 <rajpratik71!~semicode@47.247.55.50> has quit IRC (Quit: rajpratik71)
[19:02:23] *** ggarcia <ggarcia!~gonzalo@host3.190-224-58.telecom.net.ar> has joined #jenkins
[19:02:40] *** jstrachan <jstrachan!~jstrachan@host86-128-131-211.range86-128.btcentralplus.com> has quit IRC (Quit: Computer has gone to sleep.)
[19:02:51] *** rajpratik71 <rajpratik71!~semicode@47.247.55.50> has joined #jenkins
[19:03:47] *** csanchez <csanchez!~csanchez@171.107.27.77.dynamic.reverse-mundo-r.com> has joined #jenkins
[19:04:29] *** denimsoft <denimsoft!~textual@cpc115988-dals23-2-0-cust224.20-2.cable.virginm.net> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[19:06:21] *** antgel <antgel!~topdog@ec2-34-207-142-82.compute-1.amazonaws.com> has quit IRC (Ping timeout: 240 seconds)
[19:06:35] *** csanchez <csanchez!~csanchez@171.107.27.77.dynamic.reverse-mundo-r.com> has quit IRC (Remote host closed the connection)
[19:08:14] *** antgel <antgel!~topdog@141.226.120.30> has joined #jenkins
[19:08:40] *** JasonCL <JasonCL!~JasonCL@129.33.253.147> has joined #jenkins
[19:08:59] *** srinidhi <srinidhi!~srinidhi@opensuse/member/srinidhi> has quit IRC (Quit: Leaving.)
[19:10:35] *** rajpratik71 <rajpratik71!~semicode@47.247.55.50> has quit IRC (Quit: rajpratik71)
[19:13:08] *** dmone <dmone!~dmone@154.57.4.229> has quit IRC (Quit: Leaving)
[19:13:19] *** rajpratik71 <rajpratik71!~semicode@47.247.55.50> has joined #jenkins
[19:13:33] *** JasonCL <JasonCL!~JasonCL@129.33.253.147> has quit IRC (Ping timeout: 264 seconds)
[19:14:37] *** tvon <tvon!uid289068@gateway/web/irccloud.com/x-olsippqogefkjxkg> has joined #jenkins
[19:14:38] *** ldnunes <ldnunes!~ldnunes_@181.220.79.73> has quit IRC (Ping timeout: 256 seconds)
[19:18:02] *** JasonCL <JasonCL!~JasonCL@129.33.253.147> has joined #jenkins
[19:19:33] *** JasonCL <JasonCL!~JasonCL@129.33.253.147> has quit IRC (Remote host closed the connection)
[19:22:28] *** sabre1041 <sabre1041!~sabre1041@50-201-95-250-static.hfc.comcastbusiness.net> has joined #jenkins
[19:22:48] *** JasonCL <JasonCL!~JasonCL@129.33.253.147> has joined #jenkins
[19:23:31]
<ggarcia> HI All, perhaps now is a better time to ask my question, I'm having an issue with Jenkins, but unsure, the build details being show for a "normal" job are not the same for a pipeline job. Screenshots for a "normal" build https://imgur.com/a/7c5md and for a pipeline build using the old ui: https://imgur.com/a/1gCsd. Is there any way that they become similar?
[19:23:54] *** iocanel1 <iocanel1!~iocanel@ppp-94-65-12-153.home.otenet.gr> has quit IRC (Quit: WeeChat 2.0.1)
[19:24:47] *** csanchez <csanchez!~csanchez@171.107.27.77.dynamic.reverse-mundo-r.com> has joined #jenkins
[19:24:51] *** iocanel <iocanel!~iocanel@ppp-94-65-12-153.home.otenet.gr> has joined #jenkins
[19:24:53] *** iocanel <iocanel!~iocanel@ppp-94-65-12-153.home.otenet.gr> has quit IRC (Changing host)
[19:24:53] *** iocanel <iocanel!~iocanel@redhat/jboss/iocanel> has joined #jenkins
[19:25:25] *** rajpratik71 <rajpratik71!~semicode@47.247.55.50> has quit IRC (Quit: rajpratik71)
[19:27:40] *** antgel <antgel!~topdog@141.226.120.30> has quit IRC (Ping timeout: 256 seconds)
[19:28:09] *** rajpratik71 <rajpratik71!~semicode@47.247.55.50> has joined #jenkins
[19:28:23] *** ldnunes <ldnunes!~ldnunes_@181.220.79.73> has joined #jenkins
[19:28:25] *** rajpratik71 <rajpratik71!~semicode@47.247.55.50> has quit IRC (Remote host closed the connection)
[19:29:31] *** antgel <antgel!~topdog@141.226.120.30> has joined #jenkins
[19:29:59] <tvon> ggarcia: I'm not sure I can help, but I'm also not sure what your question is. You want to know why those two are different, or how to make them more similar?
[19:30:48] *** JasonCL <JasonCL!~JasonCL@129.33.253.147> has quit IRC (Ping timeout: 268 seconds)
[19:30:49] *** csanchez <csanchez!~csanchez@171.107.27.77.dynamic.reverse-mundo-r.com> has quit IRC (Remote host closed the connection)
[19:32:32] *** Cervator <Cervator!~Thunderbi@2601:4c1:4001:1d5d:45d2:4da:7af7:6ee5> has joined #jenkins
[19:33:11] *** csanchez <csanchez!~csanchez@171.107.27.77.dynamic.reverse-mundo-r.com> has joined #jenkins
[19:37:00] *** amodi <amodi!amodi@nat/redhat/x-hqbzehosoppzhbpj> has joined #jenkins
[19:37:08] *** floppydh <floppydh!floppydh@gateway/vpn/privateinternetaccess/floppydh> has quit IRC (Quit: WeeChat 2.1)
[19:38:23] <ggarcia> tvon: how to make them more similar
[19:38:44] <tang^> pipeline is a really different model for interaction
[19:39:11] <tang^> it works best with blue ocean rather than the old ui
[19:39:58] <ggarcia> Yeah, the view is really different, but I was wondering if perhaps a config/plugin existed that will add the information :-)
[19:40:34] <tang^> probably not as the pipeline model is so different from the freestyle model
[19:41:44] *** JasonCL <JasonCL!~JasonCL@129.33.253.147> has joined #jenkins
[19:43:03] <ggarcia> So it may be a good idea to create an issue on Jenkins-core?
[19:44:21] *** drulli <drulli!~ulli@jenkins/developer/drulli> has quit IRC (Ping timeout: 240 seconds)
[19:45:12] *** ky13_ <ky13_!~ky13_@96.72.184.213> has joined #jenkins
[19:46:01] <Slide-O-Mix> No, not core, not sure the correct pipeline plugin to use though
[19:46:36] *** csanchez <csanchez!~csanchez@171.107.27.77.dynamic.reverse-mundo-r.com> has quit IRC (Remote host closed the connection)
[19:46:49] *** sabre1041 <sabre1041!~sabre1041@50-201-95-250-static.hfc.comcastbusiness.net> has quit IRC (Remote host closed the connection)
[19:47:09] *** JasonCL <JasonCL!~JasonCL@129.33.253.147> has quit IRC (Ping timeout: 264 seconds)
[19:47:19] *** sabre1041 <sabre1041!~sabre1041@50-201-95-250-static.hfc.comcastbusiness.net> has joined #jenkins
[19:47:30] *** niab <niab!~disc@unaffiliated/niab> has joined #jenkins
[19:48:00] *** TomTom <TomTom!uid45892@gateway/web/irccloud.com/x-utzhsmssacwvamiw> has quit IRC (Quit: Connection closed for inactivity)
[19:48:48] <tang^> it should get moved to an accurate plugin if you aren't sure
[19:49:46] *** Singmyr <Singmyr!~singmyr@80.216.49.44> has joined #jenkins
[19:50:40] *** horsey <horsey!~horsey@122.167.94.70> has quit IRC (Remote host closed the connection)
[19:50:45] <Slide-O-Mix> ggarcia: what specific information do you want to see? the parameters?
[19:51:52] *** horsey <horsey!~horsey@122.167.94.70> has joined #jenkins
[19:51:57] *** sabre1041 <sabre1041!~sabre1041@50-201-95-250-static.hfc.comcastbusiness.net> has quit IRC (Ping timeout: 264 seconds)
[19:52:25] *** icarus <icarus!~icarus@unaffiliated/icarus-/x-7520418> has quit IRC (Quit: leaving)
[19:52:51] <Slide-O-Mix> jenkins-admin: host hosting-535
[19:52:51] <jenkins-admin> Approving hosting request HOSTING-535
[19:52:55] <jenkins-admin> Forking nodepool-plugin
[19:53:05] <jenkins-admin> Failed to add GHUser at 206201e4[login=rcbops,location=<null>,blog=,email=<null>,name=<null>,company=<null>,followers=0,following=0,responseHeaderFields={null=[HTTP/1 dot 1 200 OK], Server=[GitHub.com], Access-Control-Allow-Origin=[*], Last-Modified=[Mon, 19 Mar 2018 17:07:29 GMT], X-Runtime-rack=[0.054520], Referrer-Policy=[origin-when-cross-origin, strict-origin-when-cross-origin], X-Frame-Options=[deny], Strict-Transport-Security=[max-age=315
[19:53:14] <jenkins-admin> Added bdelliott as a GitHub committer for repository nodepool-agents-plugin
[19:53:21] <jenkins-admin> Added hughsaunders as a GitHub committer for repository nodepool-agents-plugin
[19:53:28] <jenkins-admin> Added dealako as a GitHub committer for repository nodepool-agents-plugin
[19:53:29] <jenkins-admin> Adding a new JIRA subcomponent nodepool-agents-plugin to the JENKINS project, owned by nairbttoille
[19:53:34] <jenkins-admin> Hosting setup complete
[19:53:35] <Slide-O-Mix> jenkins-admin: host hosting-534
[19:53:36] <jenkins-admin> Approving hosting request HOSTING-534
[19:53:39] <jenkins-admin> Forking JenkinsOwlReporter
[19:53:55] <jenkins-admin> Added tarikabh as a GitHub committer for repository owl-reporter-plugin
[19:53:56] <jenkins-admin> Adding a new JIRA subcomponent owl-reporter-plugin to the JENKINS project, owned by tarikabh
[19:54:01] <jenkins-admin> Hosting setup complete
[19:55:26] *** csanchez <csanchez!~csanchez@171.107.27.77.dynamic.reverse-mundo-r.com> has joined #jenkins
[19:55:46] *** ky13_ <ky13_!~ky13_@96.72.184.213> has quit IRC (Remote host closed the connection)
[19:56:20] *** JasonCL <JasonCL!~JasonCL@129.33.253.147> has joined #jenkins
[19:56:21] *** ky13_ <ky13_!~ky13_@96.72.184.213> has joined #jenkins
[19:58:24] *** JasonCL <JasonCL!~JasonCL@129.33.253.147> has quit IRC (Remote host closed the connection)
[19:58:32] <ggarcia> Slide-O-Mix: At minimum I want to see downstream build information, at best case scenario, I want them to be exactly the same, but since tang^ said it may not be possible due to the difference between the models, something more alike with the information to be availble at one-click like in the old UI?
[19:59:05] *** JasonCL <JasonCL!~JasonCL@129.33.253.147> has joined #jenkins
[20:01:01] *** ky13_ <ky13_!~ky13_@96.72.184.213> has quit IRC (Ping timeout: 268 seconds)
[20:01:57] *** hkais <hkais!~xenoadmin@p3E9E8D47.dip0.t-ipconnect.de> has quit IRC (Ping timeout: 240 seconds)
[20:02:11] *** DavidT <DavidT!c05b903d@gateway/web/freenode/ip.192.91.144.61> has joined #jenkins
[20:02:57] <Slide-O-Mix> ggarcia: are there downstream builds though, or are they contained in the pipeline itself?
[20:03:23] <Slide-O-Mix> I don't think you will get that because the stages can be completely different from how a freestyle job is done
[20:03:32] <Slide-O-Mix> stage view might help out
[20:04:17] *** antgel <antgel!~topdog@141.226.120.30> has quit IRC (Ping timeout: 248 seconds)
[20:04:54] *** vjuranek_ <vjuranek_!~vjuranek@redhat/jboss/vjuranek> has joined #jenkins
[20:04:54] *** ChanServ sets mode: +v vjuranek_
[20:06:10] *** mikado <mikado!574eeffc@gateway/web/freenode/ip.87.78.239.252> has quit IRC (Ping timeout: 260 seconds)
[20:09:24]
<DavidT> Are there any known issues with groovy class inheritance with Jenkins + JDK 8 ? , the following code works fine on JDK 7: https://pastebin.com/kYPT7r3u
[20:10:44] *** ky13_ <ky13_!~ky13_@207.141.65.5> has joined #jenkins
[20:10:48] *** ky13_ <ky13_!~ky13_@207.141.65.5> has quit IRC (Remote host closed the connection)
[20:11:22] *** ky13_ <ky13_!~ky13_@207.141.65.5> has joined #jenkins
[20:14:24] *** sabre1041 <sabre1041!~sabre1041@65-114-90-19.dia.static.qwest.net> has joined #jenkins
[20:17:38] *** davidmichaelkarr <davidmichaelkarr!uid71216@gateway/web/irccloud.com/x-ubhfrqpkudwacjrq> has joined #jenkins
[20:19:46] *** csanchez <csanchez!~csanchez@171.107.27.77.dynamic.reverse-mundo-r.com> has quit IRC (Remote host closed the connection)
[20:20:53] <DavidT> tang^: Should I report a new bug for it then?
[20:21:03] *** JasonCL <JasonCL!~JasonCL@129.33.253.147> has quit IRC (Remote host closed the connection)
[20:21:28] <tang^> if you don't see any other resolution
[20:22:14] <DavidT> The issue is I haven't found anyone else even encountering it, but its so basic I would expect huge numbers of people to hit it.
[20:23:21] *** drulli <drulli!~ulli@jenkins/developer/drulli> has joined #jenkins
[20:23:21] *** ChanServ sets mode: +v drulli
[20:25:01] *** lucinka <lucinka!lvotypko@nat/redhat/x-cuuiojuvtntygtcd> has quit IRC (Ping timeout: 256 seconds)
[20:29:12] *** Phylock <Phylock!~Phylock@D4709623.rev.sefiber.dk> has joined #jenkins
[20:29:58] *** sabre1041 <sabre1041!~sabre1041@65-114-90-19.dia.static.qwest.net> has quit IRC (Remote host closed the connection)
[20:37:58] *** JasonCL <JasonCL!~JasonCL@129.33.253.147> has joined #jenkins
[20:40:27] *** csanchez <csanchez!~csanchez@171.107.27.77.dynamic.reverse-mundo-r.com> has joined #jenkins
[20:41:34] *** ky13_ <ky13_!~ky13_@207.141.65.5> has quit IRC (Remote host closed the connection)
[20:42:14] <ggarcia> Slide-O-Mix: They are there, and are shown in the build log, but not being displayed on the build details page, on the job details they are being shown as well
[20:42:37] *** vjuranek_ <vjuranek_!~vjuranek@redhat/jboss/vjuranek> has quit IRC (Remote host closed the connection)
[20:42:41] *** hbautista <hbautista!~hbautista@189.201.191.13> has joined #jenkins
[20:42:51] *** vjuranek_ <vjuranek_!~vjuranek@redhat/jboss/vjuranek> has joined #jenkins
[20:42:51] *** ChanServ sets mode: +v vjuranek_
[20:43:45] <ranreply> tang: the problem is solved. he resetthe ssh
[20:43:51] *** esberglu <esberglu!~esberglu@2620:1f7:890:4c01::31:276> has quit IRC (Ping timeout: 240 seconds)
[20:43:53] *** ggarcia <ggarcia!~gonzalo@host3.190-224-58.telecom.net.ar> has quit IRC (Quit: Leaving.)
[20:44:49] *** csanchez <csanchez!~csanchez@171.107.27.77.dynamic.reverse-mundo-r.com> has quit IRC (Ping timeout: 248 seconds)
[20:46:00] *** abhiyerra <abhiyerra!~textual@2601:645:0:5031:506f:3147:a145:7ff9> has joined #jenkins
[20:46:51] *** vjuranek_ <vjuranek_!~vjuranek@redhat/jboss/vjuranek> has quit IRC (Remote host closed the connection)
[20:48:46] <tang^> ranreply: cool
[20:49:29] *** calculus <calculus!~calculus@gentoo/user/calculus> has quit IRC (Ping timeout: 276 seconds)
[20:50:45] *** drichtar <drichtar!drichtar@nat/redhat/x-smshwjxipdamqygi> has quit IRC (Quit: Leaving)
[20:50:48] *** jds_ <jds_!uid14340@gateway/web/irccloud.com/x-vnqyynigclbqhmmp> has quit IRC (Quit: Connection closed for inactivity)
[20:51:18] *** zerok_ <zerok_!~textual@84-115-59-243.cable.dynamic.surfer.at> has joined #jenkins
[20:51:19] *** zerok_ <zerok_!~textual@84-115-59-243.cable.dynamic.surfer.at> has quit IRC (Changing host)
[20:51:19] *** zerok_ <zerok_!~textual@pdpc/supporter/active/zerok> has joined #jenkins
[20:54:13] *** Phylock <Phylock!~Phylock@D4709623.rev.sefiber.dk> has quit IRC (Read error: Connection reset by peer)
[20:55:12] *** Phylock <Phylock!~Phylock@D4709623.rev.sefiber.dk> has joined #jenkins
[20:58:29] *** antgel <antgel!~topdog@IGLD-84-229-96-227.inter.net.il> has joined #jenkins
[21:00:32] *** JasonCL <JasonCL!~JasonCL@129.33.253.147> has quit IRC (Remote host closed the connection)
[21:03:21] *** maudat <maudat!~maudat@207.253.20.178> has quit IRC (Ping timeout: 240 seconds)
[21:04:12] *** JasonCL <JasonCL!~JasonCL@129.33.253.147> has joined #jenkins
[21:04:57] *** JasonCL <JasonCL!~JasonCL@129.33.253.147> has quit IRC (Read error: Connection reset by peer)
[21:05:32] *** JasonCL <JasonCL!~JasonCL@129.33.253.147> has joined #jenkins
[21:06:58] *** JasonCL_ <JasonCL_!~JasonCL@129.33.253.147> has joined #jenkins
[21:07:18] *** overflow_ <overflow_!~overflow@46.21.151.107> has quit IRC (Read error: Connection reset by peer)
[21:08:44] *** overflow_ <overflow_!~overflow@46.21.151.107> has joined #jenkins
[21:09:57] *** JasonCL <JasonCL!~JasonCL@129.33.253.147> has quit IRC (Ping timeout: 240 seconds)
[21:11:29] *** JasonCL_ <JasonCL_!~JasonCL@129.33.253.147> has quit IRC (Ping timeout: 248 seconds)
[21:12:19] *** ky13_ <ky13_!~ky13_@207.141.65.5> has joined #jenkins
[21:15:21] *** bmurt <bmurt!~hmm@216.164.232.97> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[21:16:37] *** tykeal_away is now known as tykeal
[21:16:51] *** teotwaki <teotwaki!~teotwaki@Maemo/community/contributor/crashanddie> has quit IRC (Ping timeout: 240 seconds)
[21:17:53] *** ky13_ <ky13_!~ky13_@207.141.65.5> has quit IRC (Ping timeout: 248 seconds)
[21:18:13] *** rl_stein <rl_stein!4801c452@gateway/web/freenode/ip.72.1.196.82> has joined #jenkins
[21:22:22] *** rl_stein <rl_stein!4801c452@gateway/web/freenode/ip.72.1.196.82> has quit IRC (Client Quit)
[21:32:25] *** horsey <horsey!~horsey@122.167.94.70> has quit IRC (Remote host closed the connection)
[21:32:49] *** raynold <raynold!uid201163@gateway/web/irccloud.com/x-ylndnyutjhcixwda> has quit IRC (Quit: Connection closed for inactivity)
[21:34:55] *** red888 <red888!6421ecca@gateway/web/freenode/ip.100.33.236.202> has joined #jenkins
[21:35:12] <red888> hello im having problems getting a slave to connect via web start
[21:38:16] *** hkais <hkais!~xenoadmin@p2E562730.dip0.t-ipconnect.de> has joined #jenkins
[21:38:29] *** srinidhi <srinidhi!~srinidhi@opensuse/member/srinidhi> has joined #jenkins
[21:40:05] <red888> kind of frustrating because i can establish a connection from the slave and see errors or ANY logs at all on the master or the slave
[21:40:42] *** newhouse <newhouse!~newhouse@162.33.165.83.dynamic.reverse-mundo-r.com> has joined #jenkins
[21:40:43] <red888> sorry i mean I can see *no* error logs or any logs for this slave connection from the logs on the slave or the logs on the master
[21:42:40] *** maudat <maudat!~maudat@2607:fad8:4:6:f2de:f1ff:feb1:d7c5> has joined #jenkins
[21:43:28] *** asaleh <asaleh!~asaleh@2a00:1028:83a6:512:2ab2:bdff:fea2:af8> has joined #jenkins
[21:43:33] *** geaden <geaden!~geaden@31.44.84.2> has quit IRC (Ping timeout: 264 seconds)
[21:43:56] *** RL <RL!4801c452@gateway/web/freenode/ip.72.1.196.82> has joined #jenkins
[21:45:03] *** ky13_ <ky13_!~ky13_@207.141.65.5> has joined #jenkins
[21:45:31] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[21:46:53] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Read error: Connection reset by peer)
[21:49:11] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[21:50:01] *** ky13_ <ky13_!~ky13_@207.141.65.5> has quit IRC (Remote host closed the connection)
[21:50:13] *** ky13_ <ky13_!~ky13_@207.141.65.5> has joined #jenkins
[21:51:01] *** nsizemor <nsizemor!~Thunderbi@192.92.122.128> has quit IRC (Quit: nsizemor)
[21:51:22] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Remote host closed the connection)
[21:51:43] *** nsizemor <nsizemor!~Thunderbi@192.92.122.128> has joined #jenkins
[21:52:28] <Slide-O-Mix> is the jvm at least version 8 on the master and agent machines?
[21:54:59] *** geaden <geaden!~geaden@31.44.84.2> has joined #jenkins
[21:55:19] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[21:56:39] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Remote host closed the connection)
[21:57:53] *** bmurt <bmurt!~hmm@216.164.232.97> has joined #jenkins
[22:00:29] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[22:01:17] *** abhiyerra <abhiyerra!~textual@2601:645:0:5031:506f:3147:a145:7ff9> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[22:02:24] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Remote host closed the connection)
[22:03:01] <red888> @Slide-O-Mix yup
[22:03:16] *** asaleh <asaleh!~asaleh@2a00:1028:83a6:512:2ab2:bdff:fea2:af8> has quit IRC (Ping timeout: 246 seconds)
[22:04:04] <red888> it seems like the command im running is establishing a jnlp connection but jenkins doesn't register it as a slave connection?
[22:04:37] <red888> what I found too is that if I change the "-secret" to some random value it still connects the same way and i still see no error logs anywhere
[22:04:47] *** abhiyerra <abhiyerra!~textual@2601:645:0:5031:3c77:f6ab:d7e4:7d05> has joined #jenkins
[22:07:19] <red888> gahhh its working, now i have to figure out how lol
[22:09:46] *** fridim_ <fridim_!~fridim@56-198-190-109.dsl.ovh.fr> has joined #jenkins
[22:09:58] *** fridim <fridim!~fridim@56-198-190-109.dsl.ovh.fr> has quit IRC (Ping timeout: 260 seconds)
[22:10:34] *** TheJestr_ <TheJestr_!~TheJestr@ec2-18-216-246-132.us-east-2.compute.amazonaws.com> has left #jenkins
[22:12:47] *** TheJestr <TheJestr!~TheJestr@ec2-18-216-246-132.us-east-2.compute.amazonaws.com> has joined #jenkins
[22:12:51] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[22:15:46] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Remote host closed the connection)
[22:16:22] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[22:17:39] *** coderphive <coderphive!~coderphiv@unaffiliated/coderphive> has joined #jenkins
[22:23:27] *** rpocase <rpocase!~rpocase@APINAT.adtran.com> has joined #jenkins
[22:23:56] <rpocase> So uh, abayer, I saw sequential stages got merged.
[22:24:18] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Remote host closed the connection)
[22:24:36] <abayer> rpocase: It didn't - I just pushed a branch of it to the jenkinsci repo so that other things could have PRs against it (i.e., it's a de-factor "here's what's coming in 1.3" branch)
[22:24:55] <rpocase> abayer: Awww :(. Misread my update feed
[22:25:04] <rpocase> Oh well. It'll be ahwile till I'd be able to consume anyway
[22:25:16] <abayer> Don't worry, I get confused when I see the JIRA email come in and I do the push myself. =)
[22:27:27] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[22:27:33] *** bmurt <bmurt!~hmm@216.164.232.97> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[22:27:58] *** RL <RL!4801c452@gateway/web/freenode/ip.72.1.196.82> has quit IRC (Quit: Page closed)
[22:29:37] *** red888 <red888!6421ecca@gateway/web/freenode/ip.100.33.236.202> has quit IRC (Quit: Page closed)
[22:30:45] *** rlefort <rlefort!~rlefort@72.1.196.82> has joined #jenkins
[22:31:03] <rlefort> :q
[22:31:07] *** rlefort <rlefort!~rlefort@72.1.196.82> has quit IRC (Client Quit)
[22:32:02] *** RL <RL!4801c452@gateway/web/freenode/ip.72.1.196.82> has joined #jenkins
[22:33:22] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Ping timeout: 264 seconds)
[22:35:24] *** blutwurst <blutwurst!~admin@p54822449.dip0.t-ipconnect.de> has quit IRC (Quit: Leaving.)
[22:36:48] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[22:38:56] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Remote host closed the connection)
[22:39:19] *** srinidhi <srinidhi!~srinidhi@opensuse/member/srinidhi> has quit IRC (Ping timeout: 256 seconds)
[22:41:12] *** rlefort <rlefort!~rlefort@72.1.196.82> has joined #jenkins
[22:41:53] *** RL <RL!4801c452@gateway/web/freenode/ip.72.1.196.82> has quit IRC (Quit: Page closed)
[22:42:03] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[22:46:41] *** RL <RL!4801c452@gateway/web/freenode/ip.72.1.196.82> has joined #jenkins
[22:46:50] *** rlefort <rlefort!~rlefort@72.1.196.82> has quit IRC (Quit: Lost terminal)
[22:46:59] *** rlefort <rlefort!~rlefort@72.1.196.82> has joined #jenkins
[22:47:18] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Ping timeout: 260 seconds)
[22:47:28] *** RL <RL!4801c452@gateway/web/freenode/ip.72.1.196.82> has quit IRC (Client Quit)
[22:48:15] *** villav <villav!~Thunderbi@72-54-189-186.customerip.birch.net> has quit IRC (Quit: I'm out)
[22:52:04] *** evulish <evulish!~evulish@cpe-66-108-46-190.nyc.res.rr.com> has joined #jenkins
[22:53:25] <evulish> i'm using jenkins to scp javascript files to my server, but it's leaving behind old files. what's the best way to go about cleaning that up? my best idea so far was to tar my build, then exec tar xvf blap.tar --unlink-recursive
[22:53:35] <evulish> but i don't know if there's a more elegant solution than that
[22:54:36] *** sbuj <sbuj!~sbuj@2601:200:c000:dbaa:ec35:e212:3472:aba8> has quit IRC (Quit: sbuj)
[22:54:52] *** rlefort <rlefort!~rlefort@72.1.196.82> has quit IRC (Quit: Lost terminal)
[22:55:04] *** rlefort <rlefort!~rlefort@72.1.196.82> has joined #jenkins
[22:55:13] *** villav <villav!~Thunderbi@72-54-189-186.customerip.birch.net> has joined #jenkins
[22:55:57] *** esberglu <esberglu!~esberglu@2620:1f7:890:4c01::31:e> has joined #jenkins
[22:56:07] *** RLL <RLL!4801c452@gateway/web/freenode/ip.72.1.196.82> has joined #jenkins
[22:56:08] *** RLL <RLL!4801c452@gateway/web/freenode/ip.72.1.196.82> has quit IRC (Client Quit)
[22:56:22] *** RL <RL!4801c452@gateway/web/freenode/ip.72.1.196.82> has joined #jenkins
[22:57:02] *** RL <RL!4801c452@gateway/web/freenode/ip.72.1.196.82> has quit IRC (Client Quit)
[22:58:05] *** hbautista_ <hbautista_!~hbautista@189.201.191.13> has joined #jenkins
[22:58:21] *** ujjain <ujjain!~ujjain@unaffiliated/ujjain> has quit IRC (Ping timeout: 240 seconds)
[22:58:23] *** hbautista <hbautista!~hbautista@189.201.191.13> has quit IRC (Ping timeout: 260 seconds)
[22:58:52] *** nsizemor <nsizemor!~Thunderbi@192.92.122.128> has quit IRC (Quit: nsizemor)
[22:59:53] *** newhouse <newhouse!~newhouse@162.33.165.83.dynamic.reverse-mundo-r.com> has quit IRC (Read error: Connection reset by peer)
[23:00:21] *** esberglu <esberglu!~esberglu@2620:1f7:890:4c01::31:e> has quit IRC (Ping timeout: 240 seconds)
[23:00:22] *** DavidT <DavidT!c05b903d@gateway/web/freenode/ip.192.91.144.61> has quit IRC (Quit: Page closed)
[23:02:56] *** SoDown <SoDown!~SoDown@75-146-190-241-Minnesota.hfc.comcastbusiness.net> has joined #jenkins
[23:02:58] *** douglas_ <douglas_!douglas@nat/redhat/x-zmauxqeojhtlwgyg> has quit IRC (Ping timeout: 260 seconds)
[23:02:58] *** sabre1041 <sabre1041!~sabre1041@174.224.128.157> has joined #jenkins
[23:05:12] *** dsariel <dsariel!~dsariel@37.142.86.84> has joined #jenkins
[23:06:51] *** antgel <antgel!~topdog@IGLD-84-229-96-227.inter.net.il> has quit IRC (Ping timeout: 240 seconds)
[23:08:01] <cpama> hi all
[23:08:21] <cpama> i'm having a problem where I'm trying to capture the output of a shell script into a file on a remote machine
[23:08:26] <cpama> its TAP output
[23:08:36] <cpama> trying to get Jenkins to process.
[23:08:43] <cpama> creating pastebin...
[23:09:06] <cpama> actually...
[23:09:11] <cpama> neverind. local meeting.
[23:09:14] <cpama> will have to post back tomorrow
[23:09:17] <cpama> sorry for the noise.
[23:11:02] *** sbuj <sbuj!~sbuj@2601:200:c000:dbaa:ec35:e212:3472:aba8> has joined #jenkins
[23:11:47] *** rlefort <rlefort!~rlefort@72.1.196.82> has quit IRC (Quit: Lost terminal)
[23:11:59] *** rlefort <rlefort!~rlefort@72.1.196.82> has joined #jenkins
[23:12:06] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[23:14:35] *** cr3 <cr3!~cr3@207.107.68.234> has quit IRC (Quit: leaving)
[23:15:43] *** newhouse <newhouse!~newhouse@162.33.165.83.dynamic.reverse-mundo-r.com> has joined #jenkins
[23:16:02] *** rlefort <rlefort!~rlefort@72.1.196.82> has quit IRC (Client Quit)
[23:16:06] *** zerok_ <zerok_!~textual@pdpc/supporter/active/zerok> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[23:16:12] *** rlefort <rlefort!~rlefort@72.1.196.82> has joined #jenkins
[23:16:13] *** overflow_ <overflow_!~overflow@46.21.151.107> has quit IRC (Read error: Connection reset by peer)
[23:16:48] *** overflow_ <overflow_!~overflow@46.21.151.107> has joined #jenkins
[23:16:54] *** ranreply <ranreply!c62d1371@gateway/web/freenode/ip.198.45.19.113> has quit IRC (Ping timeout: 260 seconds)
[23:17:43] *** esberglu <esberglu!~esberglu@2620:1f7:890:4c01::31:e> has joined #jenkins
[23:18:31] <evulish> weird. tarring my build cuts the time down by 50%
[23:19:02] *** davehunt <davehunt!~davehunt@88.97.12.57> has quit IRC (Quit: Leaving...)
[23:19:07] *** ldnunes <ldnunes!~ldnunes_@181.220.79.73> has quit IRC (Quit: Leaving)
[23:19:07] *** rlefort <rlefort!~rlefort@72.1.196.82> has quit IRC (Client Quit)
[23:20:16] *** zarzar <zarzar!~zarzar@vpn.noregon.com> has quit IRC (Quit: Leaving)
[23:20:23] *** csanchez <csanchez!~csanchez@171.107.27.77.dynamic.reverse-mundo-r.com> has joined #jenkins
[23:21:03] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Remote host closed the connection)
[23:22:51] *** esberglu <esberglu!~esberglu@2620:1f7:890:4c01::31:e> has quit IRC (Remote host closed the connection)
[23:22:52] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[23:23:27] *** esberglu <esberglu!~esberglu@2620:1f7:890:4c01::31:e> has joined #jenkins
[23:24:51] *** csanchez <csanchez!~csanchez@171.107.27.77.dynamic.reverse-mundo-r.com> has quit IRC (Ping timeout: 240 seconds)
[23:27:35] *** Rapture <Rapture!~textual@50-204-232-30-static.hfc.comcastbusiness.net> has quit IRC (Quit: Textual IRC Client: www.textualapp.com)
[23:28:09] *** raynold <raynold!uid201163@gateway/web/irccloud.com/x-ljlftvsajwylceom> has joined #jenkins
[23:28:38] *** esberglu <esberglu!~esberglu@2620:1f7:890:4c01::31:e> has quit IRC (Ping timeout: 276 seconds)
[23:30:02] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Remote host closed the connection)
[23:30:32] *** abhiyerra <abhiyerra!~textual@2601:645:0:5031:3c77:f6ab:d7e4:7d05> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzz…)
[23:32:08] *** deltreey_ <deltreey_!uid173157@gateway/web/irccloud.com/x-yizvabuxysfbiozk> has joined #jenkins
[23:32:32] <deltreey_> hey, latest version of jenkins is crashing when I try to open the load statistics graph. Any idea what's happening? I can post log files somewhere
[23:33:08] *** horsey <horsey!~horsey@122.167.94.70> has joined #jenkins
[23:33:08] *** Bonjourm8 <Bonjourm8!~Thaelim@2604:2000:b9cd:1600:8941:4321:a07c:afc3> has joined #jenkins
[23:35:10] <drulli> is Jenkins already Java 9 compatible?
[23:35:28] <drulli> deltreey_: you are using a JRE 9
[23:35:47] <deltreey_> should I not be?
[23:35:52] <tang^> Jenkins is not Java 9 ready
[23:35:57] *** LordLion <LordLion!uid31081@wrongplanet/lordlion> has joined #jenkins
[23:36:03] <deltreey_> oh, gotta downgrade java, ok
[23:36:03] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has joined #jenkins
[23:36:33] <tang^> feel free to raise an issue and tag it JDK9 so that it gets addressed, though
[23:37:19] *** JasonCL <JasonCL!~JasonCL@cpe-174-109-154-111.nc.res.rr.com> has quit IRC (Remote host closed the connection)
[23:37:23] <tang^> that looks like a 2 year old build of Java9 at that
[23:37:34] *** jhatoms <jhatoms!~jthomas@235.235.136.95.rev.sfr.net> has quit IRC (Ping timeout: 256 seconds)
[23:38:03] *** horsey <horsey!~horsey@122.167.94.70> has quit IRC (Ping timeout: 260 seconds)
[23:38:17] <tang^> Java 9 is moot anyway since it's EOL now that Java 10 is out :-/
[23:40:25] *** iocanel <iocanel!~iocanel@redhat/jboss/iocanel> has quit IRC (Quit: WeeChat 2.0.1)
[23:43:21] <Slide-O-Mix> deltreey_: also, highly recommended that you use an LTS instead of the latest
[23:43:41] *** SoDown <SoDown!~SoDown@75-146-190-241-Minnesota.hfc.comcastbusiness.net> has quit IRC (Quit: Leaving)
[23:43:58] *** sabre1041 <sabre1041!~sabre1041@174.224.128.157> has quit IRC (Remote host closed the connection)
[23:45:05] <deltreey_> awesome, worked great guys. I was trying to get statistics on my usage of Jenkins over the life of the server. Is there anything like that?
[23:48:04] *** newhouse <newhouse!~newhouse@162.33.165.83.dynamic.reverse-mundo-r.com> has quit IRC (Read error: Connection reset by peer)
[23:48:04] *** amodi <amodi!amodi@nat/redhat/x-hqbzehosoppzhbpj> has quit IRC (Read error: Connection reset by peer)
[23:48:08] *** archit <archit!archit@nat/redhat/x-nvptuhpoeopgqvnl> has joined #jenkins
[23:48:15] *** archit is now known as amodi
[23:50:40] *** akostadinov <akostadinov!~avalon@redhat/jboss/akostadinov> has joined #jenkins
[23:50:54] <deltreey_> looks like I might be able to use the REST API for that, no?
[23:52:54] <deltreey_> ah yes, having the server only keep 7 days worth of history on jobs...I'm my own worst enemy
[23:53:56] <deltreey_> thanks so much guys
[23:55:12] *** abayer <abayer!~abayer@jenkins/developer/abayer> has quit IRC (Quit: Leaving.)