When jenkins is run as service on windows machines it runs in different
background session and it is not possible to run UI test there are many
posts about it on the net. To overcome the issue you can set task and load
jenkins by jar
On Sep 22, 2015 3:07 PM, <jenkinsci-users@googlegroups.com> wrote:
>
> jenkinsci-users@googlegroups.com
> Google Groups
> Topic digest
> View all topics
> Is there a way to provide build parameters through a dialog box ? - 3
Updates
> GUI with jenkins not opening on the slave machine - 4 Updates
> Troubles with publishing artifacts - 2 Updates
> Jenkins configuration and selenium Grid - 1 Update
> Editing Build parameters or Build priority for Builds in queue - 1 Update
> 'ansible-playbook: command not found' error when running from execute
shell - 3 Updates
> Run Ansible in jenkins - 1 Update
> [workflow-plugin] Aborting doesn't stop downstream jobs - 1 Update
> Jenkins Workflow and Timestamp plugin - 4 Updates
> Has anyone looked at a node.js proxy for jenkins that allows one to
rewrite pages and add content - 1 Update
> When editing a script in a Jenkins text area -- has anyone looked into
having language aware editors be enabled - 1 Update
> Projects tied to a NODE - 1 Update
> weak ephemeral Diffie-Hellman - 1 Update
> Update jobs via Script Console does not take effect - 1 Update
> Is there a way to provide build parameters through a dialog box ?
> Rohan Majumdar <rohanmajumda...@gmail.com>: Sep 21 10:25PM -0700
>
> I am building a project with jenkins.
> I am seeking a plugin or some usage technique with which we can provide
the
> version number through a GUI with each build.
> My command is :- make <Version Number>
> I would like to provide version number from if possible through a dialog
> box through to the build process.
> Is that possible if at all ??
> Vani Paridhyani <vani.paridhy...@freecharge.com>: Sep 21 11:11PM -0700
>
> Hi!
>
> Yes it is possible. Check 'This build is parameterized' in the job. You
can
> choose to give 'String Parameter' in your case.
>
> On Tuesday, September 22, 2015 at 10:55:47 AM UTC+5:30, Rohan Majumdar
> wrote:
> Rohan Majumdar <rohanmajumda...@gmail.com>: Sep 22 05:00AM -0700
>
> Thnx Vani
>
> On Tuesday, September 22, 2015 at 11:41:50 AM UTC+5:30, Vani Paridhyani
> wrote:
> Back to top
> GUI with jenkins not opening on the slave machine
> Rohan Majumdar <rohanmajumda...@gmail.com>: Sep 21 10:18PM -0700
>
> Yeah, I have followed the same tutorial while making the slave.
> Once again testing works fine but the GUI automation is not visible.
> I think it happens in the backfround.
>
> On Monday, September 21, 2015 at 6:09:37 PM UTC+5:30, Victor Martinez
wrote:
> Victor Martinez <victormartinezru...@gmail.com>: Sep 21 11:25PM -0700
>
> Let me ask you if you are launching your slave connection via windows
> services (point 6) or via JNLP connections (point 5)
>
> <
https://wiki.jenkins-ci.org/download/attachments/41878276/setup03.png?version=1&modificationDate=1319630597000
>
>
> JNLP shouldn't run in the background AFAIK. Have you tried to run those
> commands manually in the same windows box? Different behaviour?
>
> Cheers
>
>
> On Tuesday, 22 September 2015 07:18:53 UTC+2, Rohan Majumdar wrote:
> Rohan Majumdar <rohanmajumda...@gmail.com>: Sep 22 05:25PM +0530
>
> Okay what I observed was rather weird, when the agent is not running as a
> service the automation is visible,
> I discovered this by accident.
>
> On Tue, Sep 22, 2015 at 11:55 AM, Victor Martinez <
> Rohan Majumdar <rohanmajumda...@gmail.com>: Sep 22 04:57AM -0700
>
> I have observed something weird, that the automation is visible when the
> agent is not running as a windows service.
> The automation visibility worked that way.
> Discovered this by accident.
>
> On Tuesday, September 22, 2015 at 11:55:05 AM UTC+5:30, Victor Martinez
> wrote:
> Back to top
> Troubles with publishing artifacts
> alexeyshirj...@gmail.com: Sep 22 03:01AM -0700
>
> Hello!
>
> Help me, please, i have some troubles with publishing artifacts. My
jenkins
> server located on the subdomain jenkins.mysubdomain.com and after build
it
> generates links such as
>
http://jenkins.subdomain.com/job/branch/build_id/artifact/bin/Artifacts/branch-build_id-bin.7z
> for download artifacts. But there aren't any files with these links. How
> can i specify link for artifacts on the build page or publish artifactes
on
> the link address (without using artifacts plugins)?
>
> Alexey Shirjaew
> Victor Martinez <victormartinezru...@gmail.com>: Sep 22 04:55AM -0700
>
> If I understood correctly, you could use groovy post build in order to
> create your own build dashboard:
>
> - https://wiki.jenkins-ci.org/display/JENKINS/Groovy+Postbuild+Plugin
>
> And add a build script like the above one
>
> def branch = manager.getEnvVariable("branch")
> ...
> manager.createSummary("folder.gif").appendText("<h1>Artifacts:</h1> <a
href=/${ <
http://jenkins.subdomain.com/job/branch/build_id/artifact/bin/Artifacts/branch-build_id-bin.7z>branch}/build_id/artifact/bin/Artifacts/branch-build_id-bin.7z
<
http://jenkins.subdomain.com/job/branch/build_id/artifact/bin/Artifacts/branch-build_id-bin.7z>>
7z</a>", false, false, false, "green")
>
>
>
> Cheers
>
>
> Back to top
> Jenkins configuration and selenium Grid
> steliosP <stellar...@gmail.com>: Sep 22 04:04AM -0700
>
> Hello RIchard,
> What you describe is totally understandable.
> Let me explain you my problem a bit.
> I want to use Jenkins not only as a selenium grid host, but also as a CI
> server.
> Let's say that from gird point of view, we are ok, since the slaves can
be
> viewed in the selenium grid configuration tab.
> Let's have the case where I am building a parametrized maven project,via
> Jenkins,
>
> mvn -update-snapshots clean install -Dsuite.Files=blabla.xml etc
>
> where blabla.xml is testng suite file, where information for running the
> tests through a grid are inside there, along with the test classes for
> execution
> When building this project, jenkins need a slave executor to run, and
> ignores grid configuration.
> But if I run the same command in cmd in my pc(meaning using the hub that
is
> hosted in jenkins server), everything is ok.
>
> Hope I shed some more light on the problem I am experiencing.
>
> Thanks,
>
> Stelios
>
> On Wednesday, September 16, 2015 at 1:03:42 PM UTC+3, DarkRift wrote:
> Back to top
> Editing Build parameters or Build priority for Builds in queue
> pshee <pavana.she...@altair.com>: Sep 22 02:45AM -0700
>
> Thanks Khai Do-2 for the reply. I'm looking for something without stopping
> the build in the queue.This is mainly for re-prioritising builds.
>
>
>
> --
> View this message in context:
http://jenkins-ci.361315.n4.nabble.com/Editing-Build-parameters-or-Build-priority-for-Builds-in-queue-tp4770984p4771437.html
> Sent from the Jenkins users mailing list archive at Nabble.com.
> Back to top
> 'ansible-playbook: command not found' error when running from execute
shell
> Vani Paridhyani <vani.paridhy...@freecharge.com>: Sep 21 11:08PM -0700
>
> Hi!
>
> I want to know how to run ansible-playbook from ‘execute shell’ of
jenkins.
> I am getting 'ansible-playbook: command not found' error.
> I am able to run the playbook by ssh’ng into the Jenkins box.
> Victor Martinez <victormartinezru...@gmail.com>: Sep 21 11:27PM -0700
>
> Hi,
>
> Command not found message is about your shell context, likely your
> ansible-playbook command is not part of the path variable, have you
checked
> your path variables in your slave? You could either set your path or use
> the full path. You can see those variables if you run the below command
in
> your shell:
>
> env | sort
>
> Cheers
>
>
> On Tuesday, 22 September 2015 08:08:34 UTC+2, Vani Paridhyani wrote:
> Vani Paridhyani <vani.paridhy...@freecharge.com>: Sep 22 12:36PM +0530
>
> Got it. Thanks Victor!
>
> On Tue, Sep 22, 2015 at 11:57 AM, Victor Martinez <
>
> --
> Thanks,
> Vani P.
> Back to top
> Run Ansible in jenkins
> Vani Paridhyani <vani.paridhy...@freecharge.com>: Sep 21 11:05PM -0700
>
> Hi!
>
> There is this https://wiki.jenkins-ci.org/display/JENKINS/Ansible+Plugin
> you can use.
>
> On Friday, January 9, 2015 at 8:58:11 PM UTC+5:30, Manikandan Santhi
Selvam
> wrote:
> Back to top
> [workflow-plugin] Aborting doesn't stop downstream jobs
> Anshu Arya <an...@anshuarya.com>: Sep 21 10:46PM -0700
>
> I have a job that starts more downstream jobs in parallel. Aborting the
> job does not abort the downstream jobs. Is this by design, am I using it
> wrong, or is this a bug/feature?
> Back to top
> Jenkins Workflow and Timestamp plugin
> Rinaldo DiGiorgio <digitalrina...@gmail.com>: Sep 21 01:32PM -0700
>
> Hi,
>
> Having time stamping in the *Console Outpu*t and in the *Workflow Steps*
> would be very useful IMO. Given the additional capabilities of workflow
> with steps and parallel, having a timestamp is very useful. I installed
> the *Timestamp* *Plugin* and did not see any timestamps in my workflow
job.
> Is this the expected outcome? If one were to want to add timestamps to
> workflow where would they go. In the core plugins for the two areas of
> interest.
>
>
> Console Output is not showing any timestamps.
>
> Running: Allocate node : Body : End
> Running: Allocate node : End
> Running: Execute sub-workflows in parallel : Body : End
> Running: Execute sub-workflows in parallel : End
> Running: End of Workflow
> Finished: SUCCESS
>
>
> Workflow steps is not showing any timestamps.
>
>
> <
https://lh3.googleusercontent.com/-2OKqFwuwLMI/VgBpChe3k1I/AAAAAAAACD0/7lE_1QmS5Yg/s1600/Screen%2BShot%2B2015-09-21%2Bat%2B16.30.23.png
>
> Victor Martinez <victormartinezru...@gmail.com>: Sep 21 01:40PM -0700
>
> It should be there:
>
> - Jira refs: https://issues.jenkins-ci.org/browse/JENKINS-27207
> - Release version
> 1.7+: https://wiki.jenkins-ci.org/display/JENKINS/Timestamper
>
> Can you verify your plugins versions?
>
> Cheers
>
> On Monday, 21 September 2015 22:32:14 UTC+2, Rinaldo DiGiorgio wrote:
> Daniel Beck <m...@beckweb.net>: Sep 21 11:02PM +0200
>
> IIRC it just needs to be added to the workflow using the snippet
generator » General build wrapper.
>
> Rinaldo DiGiorgio <digitalrina...@gmail.com>: Sep 21 03:15PM -0700
>
> On Monday, September 21, 2015 at 5:02:37 PM UTC-4, Daniel Beck wrote:
>
> > IIRC it just needs to be added to the workflow using the snippet
generator
> > » General build wrapper.
>
> Thanks that cleared it up. I am using the Jenkins Mesos plugin and trying
> to figure out where latencies are coming from and this plugin is a big
> help. Thanks Victor.
>
> tarted by user anonymous <http://scaaa017:8080/user/null>
> Running: Execute sub-workflows in parallel : Start
> [Task One] Running: Parallel branch: Task One
> [Task Two] Running: Parallel branch: Task Two
> [Task One] Running: Allocate node : Start
> [Task Two] Running: Allocate node : Start
> [Task One] Still waiting to schedule task
> [Task One] Waiting for next available executor
> [Task Two] Still waiting to schedule task
> [Task Two] Waiting for next available executor
> [Task One] Running on mesos-jenkins-1bb8e9c1-451c-41b1-a1cd-32711ca29d05
in /scratch/jenkins/workspace/Case 1 - Basic multi-task job
> [Task One] Running: Allocate node : Body : Start
> [Task One] Running: General Build Wrapper : Start
> [Task One] Running: General Build Wrapper : Body : Start
> [Task One] Running: Print Message*00:00:23.354* [Task One] Task One
> [Task One] Running: Shell Script*00:00:24.662* [Task One] [Case 1 - Basic
multi-task job] Running shell script*00:00:25.104* [Task One] + uname
-a*00:00:25.104* [Task One] Linux sca00anu 3.8.13-35.3.1.el7uek.x86_64 #2
SMP Wed Jun 25 15:27:43 PDT 2014 x86_64 x86_64 x86_64
GNU/Linux*00:00:25.104* [Task One] + sleep 120
> [Task Two] Running on mesos-jenkins-4061014a-666b-4b47-b3ce-080b964b9640
in /scratch/jenkins/workspace/Case 1 - Basic multi-task job
> [Task Two] Running: Allocate node : Body : Start
> [Task Two] Running: General Build Wrapper : Start
> [Task Two] Running: General Build Wrapper : Body : Start
> [Task Two] Running: Print Message
>
>
> *One minute delay for second mesos job to start*
>
> *00:01:35.043* [Task Two] Task Two
> [Task Two] Running: Shell Script*00:01:36.234* [Task Two] [Case 1 - Basic
multi-task job] Running shell script*00:01:36.625* [Task Two] + uname
-a*00:01:36.625* [Task Two] Linux sca00beo3.8.13-35.3.1.el7uek.x86_64 #2
SMP Wed Jun 25 15:27:43 PDT 2014 x86_64 x86_64 x86_64
GNU/Linux*00:01:36.625* [Task Two] + sleep 120
> Running: General Build Wrapper : Body : End
> Running: General Build Wrapper : End
> Running: Allocate node : Body : End
> Running: Allocate node : End
> Running: Execute sub-workflows in parallel : Body : End
> Running: General Build Wrapper : Body : End
> Running: General Build Wrapper : End
> Running: Allocate node : Body : End
> Running: Allocate node : End
> Running: Execute sub-workflows in parallel : Body : End
> Running: Execute sub-workflows in parallel : End
> Running: End of Workflow
> Finished: SUCCESS
>
>
>
>
> BTW if you switch the console output to text view the time values are
lost.
>
>
> Thanks for your help!!!!
> Back to top
> Has anyone looked at a node.js proxy for jenkins that allows one to
rewrite pages and add content
> Rinaldo DiGiorgio <digitalrina...@gmail.com>: Sep 21 01:41PM -0700
>
> I would like to be able to add pages and change the look and feel of many
> pages in Jenkins. I have done this before many times. Are there other
> efforts or approaches in this area.
>
> Rinaldo
> Back to top
> When editing a script in a Jenkins text area -- has anyone looked into
having language aware editors be enabled
> Rinaldo DiGiorgio <digitalrina...@gmail.com>: Sep 21 01:37PM -0700
>
> Has anyone tried to enable javascript based language editors for all the
> times one can enter code in a Jenkins text area. I prefer to use SCM
> systems but the turn around time for that is too slow when doing
> development. It would be a big productivity boost to have a language
editor
> be available. It might be possible to add support for pushing the code
from
> the editor box to a repo to make data entry in the script area window
part
> of the development process. I am looking for any past work or thought in
> this area.
>
>
>
> Rinaldo
> Back to top
> Projects tied to a NODE
> Victor Martinez <victormartinezru...@gmail.com>: Sep 21 01:36PM -0700
>
> You could use some groovy script:
>
> - https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+Script+Console
>
> println "JobName|Assigned label"
> Jenkins.instance.items.each {
> println "${it.name}|${it.assignedLabel}"
> }
>
> Further details:
> - http://javadoc.jenkins-ci.org/hudson/model/AbstractProject.html
>
> I hope it helps
>
> Cheers
>
> On Monday, 21 September 2015 14:51:15 UTC+2, Eric Naitove wrote:
> Back to top
> weak ephemeral Diffie-Hellman
> "Indra Gunawan (ingunawa)" <ingun...@cisco.com>: Sep 21 06:15PM
>
> To All,
>
> We as much as possible are using the Jenkins LTS RPM to setup Jenkins. We
enable the HTTPS on a different port for instance 9081.
> In existing Jenkins we do not use a webserver or proxy server to take
care of the HTTPS. We generate keystore with Java keytool.
>
>
> keytool -genkey -alias hdsoncert -keyalg RSA -keysize 2048 -sigalg
SHA1withRSA ...
>
>
> Starting with Firefox and now Chrome, some of the existing Jenkins are
inaccessible where the browser (Firefox and Chrome) complaining about
"Server has a weak ephemeral Diffie-Hellman public key".
>
> I googled about Jenkins and weak ephemeral Diffe-Hellman and nothing came
up.
>
>
> It looks like it is not the key that is unsecure but another issue with
temporary ephemeral DH key:
>
>
http://stackoverflow.com/questions/30523324/how-to-config-local-jetty-ssl-to-avoid-weak-phermeral-dh-key-error
>
>
>
> Do you have any suggestion besides setting up Proxy like Nginx and
configure it with new cyper suite to disable this weak ephemeral DH?
>
>
> Shall I try running Jenkins with JAVA 8?
>
>
https://docs.oracle.com/javase/8/docs/technotes/guides/security/enhancements-8.html
>
>
>
> I am running Jenkins with Java 7
>
>
> Thank you
>
> -Indra
> Back to top
> Update jobs via Script Console does not take effect
> Daniel Beck <m...@beckweb.net>: Sep 21 06:21PM +0200
>
> You forgot to `start(Job, boolean)` the trigger you added. You'll
probably also need to `stop()` any existing SCMTrigger that gets replaced
by yours.
>
> Back to top
> You received this digest because you're subscribed to updates for this
group. You can change your settings on the group membership page.
> To unsubscribe from this group and stop receiving emails from it send an
email to jenkinsci-users+unsubscr...@googlegroups.com.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CALrgHy5r1noHTVv9nJ8%3DuRLTrAcsLnERhBNXk%3DkTYNF0uG3qeA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to