Deploy in Wildfly using Jenkins

2015-04-24 Thread Erick Macedo
Good afternoon people,

I'm trying to perform deploy a war in wildfly via jenkins using the Deploy 
plugin jenkins, however it only allows container to the JBoss 7.x

I would like to perform the deploy via jenkins even without using the 
plugin "Apache Maven Deploy Plugin"

Someone managed to do this and can help me?

thank you

Erick Macedo

-- 
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/3d791d00-2259-49b2-9b52-0d29b6e5d110%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Doubts about Publish Over SSH Plugin

2015-04-24 Thread Erick Macedo
Hi,

Publish plugin installed SSH in jenkins to perform deploy the artifacts 
generated by the maven on a linux server with wildfly.

In SSH Server Name added the server and test the connection is ok.

The problem is in session with field Transfers Source files, these files 
are as to which path? the .m2 maven?

Well I have two jobs, one to generate the war to include the war in .m2 and 
to deploy, the latter which can utilize the plugin to deploy.

Jobs is automated so that when the build job is finished the deploy job 
begins.

Someone uses this plugin to help me?

thank you

-- 
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/f7e304b6-7a71-4493-9ac6-2016842ae1f9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Doubts about Publish Over SSH Plugin

2015-04-27 Thread Erick Macedo
First thanks for the help Richard

As I have two jobs one to build and another to deploy,

I should use the plugin "Copy Artifacts plugin" to get the war of
workspace "build" and transfer to the workspace "deploy"?

graciously
Erick Macedo

Em sexta-feira, 24 de abril de 2015 17:55:21 UTC-3, Erick Macedo escreveu:
>
> Hi,
>
> Publish plugin installed SSH in jenkins to perform deploy the artifacts 
> generated by the maven on a linux server with wildfly.
>
> In SSH Server Name added the server and test the connection is ok.
>
> The problem is in session with field Transfers Source files, these files 
> are as to which path? the .m2 maven?
>
> Well I have two jobs, one to generate the war to include the war in .m2 
> and to deploy, the latter which can utilize the plugin to deploy.
>
> Jobs is automated so that when the build job is finished the deploy job 
> begins.
>
> Someone uses this plugin to help me?
>
> thank you
>

-- 
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/c3698de8-543e-40b1-9c25-d7c60876e9b6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Doubts about Publish Over SSH Plugin

2015-04-27 Thread Erick Macedo
Hi,

I configured this way and it worked,

Another question, as you usually split between the build environment 
(Stage, test, production)?

Create a build for each environment? or a single build and different 
parameters?

Em sexta-feira, 24 de abril de 2015 17:55:21 UTC-3, Erick Macedo escreveu:
>
> Hi,
>
> Publish plugin installed SSH in jenkins to perform deploy the artifacts 
> generated by the maven on a linux server with wildfly.
>
> In SSH Server Name added the server and test the connection is ok.
>
> The problem is in session with field Transfers Source files, these files 
> are as to which path? the .m2 maven?
>
> Well I have two jobs, one to generate the war to include the war in .m2 
> and to deploy, the latter which can utilize the plugin to deploy.
>
> Jobs is automated so that when the build job is finished the deploy job 
> begins.
>
> Someone uses this plugin to help me?
>
> thank you
>

-- 
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/fa9df43b-9bc2-416b-ba0a-ee211d68173d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Run tests on another machine

2015-04-28 Thread Erick Macedo
Hii,

I have a build running on jenkins and I'm using maven.
I wonder how I could run my screen test on a different machine that is the 
jenkins, the bamboo that is setting up a possible agent.

I need this configuration because the machine that is the jenkins is a 
CentOS without graphics, and my screen tests need to be on a windows 
machine with a browser.

Could someone help me or have some material for this?

thank 

-- 
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/3a3f37aa-920f-4c48-b1e3-2e1e296c6b65%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Run tests on another machine

2015-04-28 Thread Erick Macedo
First, thank you for personal help.

I'm trying to configure it with the plugin "Send files or execute commands 
over SSH"

In Exec command, I am entering something like:

cd test / project-1 && mvn install

But this error happens on linux

SSH: Connecting from host [web.buy]
SSH: Connecting with configuration [Test Server] ...
SSH: EXEC: STDOUT / STDERR from command [cd test / project-1 && mvn clean 
install] ...
bash: --command = mvn clean install: command not found

My Maven is configured correctly.

Could someone help me with this?

Em terça-feira, 28 de abril de 2015 08:37:30 UTC-3, Erick Macedo escreveu:
>
> Hii,
>
> I have a build running on jenkins and I'm using maven.
> I wonder how I could run my screen test on a different machine that is the 
> jenkins, the bamboo that is setting up a possible agent.
>
> I need this configuration because the machine that is the jenkins is a 
> CentOS without graphics, and my screen tests need to be on a windows 
> machine with a browser.
>
> Could someone help me or have some material for this?
>
> thank 
>

-- 
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/d2f173cf-43d7-40cd-a16e-d19a6c8c9dd6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Run tests on another machine

2015-04-28 Thread Erick Macedo
Mark, this test I am running on another linux machine, but when work will 
move to a Windowns.

Maven is configured correctly, if I go in and finish typing mvn -va version 
is displayed correctly.

On the tips of staff

I understand that, to have a Slaves I would have to have another server 
installed jenkins, right? To work with Jenkins (Master and Slave)

And in my case I just wanted to run the test on another server and get the 
return

Em terça-feira, 28 de abril de 2015 08:37:30 UTC-3, Erick Macedo escreveu:
>
> Hii,
>
> I have a build running on jenkins and I'm using maven.
> I wonder how I could run my screen test on a different machine that is the 
> jenkins, the bamboo that is setting up a possible agent.
>
> I need this configuration because the machine that is the jenkins is a 
> CentOS without graphics, and my screen tests need to be on a windows 
> machine with a browser.
>
> Could someone help me or have some material for this?
>
> thank 
>

-- 
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/6ee41dbe-85ce-4b41-8058-63f86050%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Run tests on another machine

2015-04-28 Thread Erick Macedo
Hi , again thanks for the help.

When you talk master and slave, the Master is a server installed Jenkins 
and the Slave any other server (even without the installed jenkins)?

More to the point, Maven has been configured on another server before the 
connection then I do not believe that this is the problem, perhaps a 
limitation of the plugin?

thank you

Em terça-feira, 28 de abril de 2015 08:37:30 UTC-3, Erick Macedo escreveu:
>
> Hii,
>
> I have a build running on jenkins and I'm using maven.
> I wonder how I could run my screen test on a different machine that is the 
> jenkins, the bamboo that is setting up a possible agent.
>
> I need this configuration because the machine that is the jenkins is a 
> CentOS without graphics, and my screen tests need to be on a windows 
> machine with a browser.
>
> Could someone help me or have some material for this?
>
> thank 
>

-- 
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/3efd53eb-c7af-4f80-a9d5-e5c9e15a5abe%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Bug Publish over SSH

2015-04-28 Thread Erick Macedo
Hi,

I'm using the plugin Publish over SSH to run a remote command maven on a 
linux machine with properly configured maven.

However when running mvn command is generated an error "bash: mvn: command 
not found".

The plugin is properly connecting the remote machine, as for testing in the 
"Exec command" I include the command "ifconfig" and the same printed data 
from the remote machine.

However, when performing the command echo $ M2_HOME or echo $ PATH in the 
"Exec command" he printed the local machine where the information jenkins 
is the created, not the remote machine.

Something very strange.

Someone could help me?

-- 
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/05c8eac6-eeca-488a-a9ce-3e4a31dae3c2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Bug Publish over SSH

2015-04-28 Thread Erick Macedo
I can not understand this behavior.

In Exec command: cd test / build-38 / project && ls && echo $ M2 && mvn -v

This command does the following:

1 - cd test / build-38 / project (in this directory on the remote server)
2 - ls (list the remote server content)
3 - echo $ M2 (Prints $ M2 LOCAL server, where the jenkins is the created)
4 - mvn -v (bash: mvn: command not found, here is also strange because mvn 
-v works both on the local server, and the remote)

Em terça-feira, 28 de abril de 2015 16:25:21 UTC-3, Erick Macedo escreveu:
>
> Hi,
>
> I'm using the plugin Publish over SSH to run a remote command maven on a 
> linux machine with properly configured maven.
>
> However when running mvn command is generated an error "bash: mvn: command 
> not found".
>
> The plugin is properly connecting the remote machine, as for testing in 
> the "Exec command" I include the command "ifconfig" and the same printed 
> data from the remote machine.
>
> However, when performing the command echo $ M2_HOME or echo $ PATH in the 
> "Exec command" he printed the local machine where the information jenkins 
> is the created, not the remote machine.
>
> Something very strange.
>
> Someone could help me?
>

-- 
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/24f4e71d-fba0-468d-8047-44d6f4c48225%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Bug Publish over SSH

2015-04-28 Thread Erick Macedo
Hi,

The user I am connecting is the correct user, not root.

Are you referring to .bashrc the right remote machine?

Is remote machine is a Ubuntu and the .bashrc is so.

# JAVA
export JAVA_HOME = / usr / lib / jvm / java-8-oracle

# MAVEN
export MAVEN_HOME = / usr / local / apache-maven-3.2.5
export M2_HOME = / usr / local / apache-maven-3.2.5
export M2 = $ M2_HOME / bin
export PATH = $ M2: $ PATH

A very strange thing is that when I run the echo $ PATH in the "Exec 
command" it prints the variables of the local machine.

Em terça-feira, 28 de abril de 2015 16:25:21 UTC-3, Erick Macedo escreveu:
>
> Hi,
>
> I'm using the plugin Publish over SSH to run a remote command maven on a 
> linux machine with properly configured maven.
>
> However when running mvn command is generated an error "bash: mvn: command 
> not found".
>
> The plugin is properly connecting the remote machine, as for testing in 
> the "Exec command" I include the command "ifconfig" and the same printed 
> data from the remote machine.
>
> However, when performing the command echo $ M2_HOME or echo $ PATH in the 
> "Exec command" he printed the local machine where the information jenkins 
> is the created, not the remote machine.
>
> Something very strange.
>
> Someone could help me?
>

-- 
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/d92784d9-0141-4ef1-a240-8570c627e302%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Bug Publish over SSH

2015-04-29 Thread Erick Macedo
The plugin "SSH plugin" only allows you to run an SSH command on the server, 
since the "Publish over SSH" lets you send data and execute any command.

Out of curiosity I auditioned with "SSH plugin" and it also returns mvn: 
command not found, which leads me to understand that the problem is not in 
the plugins

Em terça-feira, 28 de abril de 2015 16:25:21 UTC-3, Erick Macedo escreveu:
>
> Hi,
>
> I'm using the plugin Publish over SSH to run a remote command maven on a 
> linux machine with properly configured maven.
>
> However when running mvn command is generated an error "bash: mvn: command 
> not found".
>
> The plugin is properly connecting the remote machine, as for testing in 
> the "Exec command" I include the command "ifconfig" and the same printed 
> data from the remote machine.
>
> However, when performing the command echo $ M2_HOME or echo $ PATH in the 
> "Exec command" he printed the local machine where the information jenkins 
> is the created, not the remote machine.
>
> Something very strange.
>
> Someone could help me?
>

-- 
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/6314b01c-2b24-476a-b22b-b8ca23cb4e55%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Bug Publish over SSH

2015-04-29 Thread Erick Macedo
Hi Richard,

What would this interactive process,

could exemplify?

obrigaod

Em terça-feira, 28 de abril de 2015 16:25:21 UTC-3, Erick Macedo escreveu:
>
> Hi,
>
> I'm using the plugin Publish over SSH to run a remote command maven on a 
> linux machine with properly configured maven.
>
> However when running mvn command is generated an error "bash: mvn: command 
> not found".
>
> The plugin is properly connecting the remote machine, as for testing in 
> the "Exec command" I include the command "ifconfig" and the same printed 
> data from the remote machine.
>
> However, when performing the command echo $ M2_HOME or echo $ PATH in the 
> "Exec command" he printed the local machine where the information jenkins 
> is the created, not the remote machine.
>
> Something very strange.
>
> Someone could help me?
>

-- 
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/d9b2b970-5fed-4df9-8f6c-dfa10e3489e7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Configure "Publish over SSH" plugin to run on Windowns

2015-05-26 Thread Erick Macedo
Hi,

First I want to thank everyone who helped me in a previous post.

I am using the plugin "Publish over SSH" Linux for Linux operation is 
perfect.

Now I have a Linux machine where it is installed jenkins and Windowns 
machine where I installed a SSH server, "openssh" via the terminal 
connection is also successful.

I'm having trouble connecting this machine via windowns plugin "Publish 
over SSH" because I have done the settings and when I perform the test, the 
following error appears.

"Connected, but failed to set up SFTP. - Check the SSH server Exec commands 
should work, but transferring files will fail
jenkins.plugins.publish_over_ssh.BapSshSftpSetupException: Failed to 
connect SFTP channel. Message [java.io.IOException: channel is broken] "


I tried to change the server openssh by Cygwin, but the error is very 
similar:

jenkins.plugins.publish_over.BapPublisherException: Failed to connect 
session is config [Machine Test - Windowns]. Message [Algorithm negotiation 
fail]

Anyone had any similar problem?

Accept any other suggestion to send and run a maven command a Linux jenkins 
for a windowns server

thank 

-- 
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/ca28cd96-91ea-4cc8-bd50-5737d04751b8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How to jenkins interact with tests carried out with Karma via ssh

2015-05-28 Thread Erick Macedo
hi,

After much difficulty I can carry out the project for a transfer windowns 
server via ssh and run the grunt test.

Now my problem is the implementation of these test, the grunt performs 
functional tests with karma and stores it in an xml, the jenkins displays 
the result on the console.

But even if the test failed it builds successfully build.

How can I make jenkins interact with these tests to break the build on 
failure?

thank 

-- 
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/5670aea6-6b6f-4c70-b369-bbe97c7c9ecb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How to Break build if the test with karma and protractor fail on the remote server.

2015-05-28 Thread Erick Macedo
Hi

How to Break build if the test with karma and protractor fail on the remote 
server.

I am running my test via ssh with the plugin "Publish over SSH" and Exec 
command field:

cd / cygdrive / c / jenkins / project-sale-mobile / deliver-main / build / 
sell-mobile / node_modules / grunt-cli / bin;
./grunt 
--base C: / jenkins / project-sale-mobile / deliver-main / build / 
sell-mobile
--gruntfile C: / jenkins / project-sale-mobile / deliver-main / build / 
sell-mobile / GruntFile.js test

the test run and visualized in jenkins, however does not break the build on 
failure

tkss

-- 
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/554b8a8c-6a36-4bd9-a59e-47ba6a3443d9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to Break build if the test with karma and protractor fail on the remote server.

2015-05-29 Thread Erick Macedo
The data from these tests are stored in xml, if anyone knows of any plugin 
that retrieves this xml file on the remote server (via ssh for example), 
and interpret this data during the build would help a lot.

Tkss

Em quinta-feira, 28 de maio de 2015 18:36:36 UTC-3, Erick Macedo escreveu:
>
> Hi
>
> How to Break build if the test with karma and protractor fail on the 
> remote server.
>
> I am running my test via ssh with the plugin "Publish over SSH" and Exec 
> command field:
>
> cd / cygdrive / c / jenkins / project-sale-mobile / deliver-main / build / 
> sell-mobile / node_modules / grunt-cli / bin;
> ./grunt 
> --base C: / jenkins / project-sale-mobile / deliver-main / build / 
> sell-mobile
> --gruntfile C: / jenkins / project-sale-mobile / deliver-main / build / 
> sell-mobile / GruntFile.js test
>
> the test run and visualized in jenkins, however does not break the build 
> on failure
>
> tkss
>

-- 
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/3fbef9a7-c446-4272-86ad-c041b1712fee%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Problem with CIFS file transfer plugin

2015-06-08 Thread Erick Macedo
HI,

I'm using CIFS plugin for transferiar some file to a Windowns machine.

Transfer Set Source files: build / sell-mobile / **

Remote directory: sale-mobile

However it returns the following error

CIFS: Connecting from host [web.vendamobile]
CIFS: Connecting with configuration [Machine Test - [sale-mobile]] ...
CIFS: Disconnecting configuration [Machine Test - [sale-mobile]] ...
ERROR: Exception When publishing, exception message [The filename, 
directory name, or volume label syntax is incorrect.]
Build step 'Send files to a windows share' changed build result to UNSTABLE

Could someone help me?

note: the connection test with the remote machine is successfully 
implemented by the plugin.

-- 
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/380dfa67-e126-4dc9-b9d2-ff2f6dd454c2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Skip resolution parameter of the ssh session on the plugin "Publish over SSH"?

2015-06-15 Thread Erick Macedo
Hi,

Personal anyone know how to pass a parameter to set the ssh session 
resolution in the plugin "Publish over SSH"?

thank you

-- 
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/075d9939-2a7e-4409-b2b7-5d16a7f0d667%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Publish over SSH] - I need help to set the screen resolution

2015-06-15 Thread Erick Macedo
Hi

I need help to set the screen resolution when I plug in a windowns machine 
(Cygwin) via ssh using the "Publish over SSH" plugin.

For this machine I run some test with selenium where it generates error due 
to screen resolution.

Tkss

-- 
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/6e5a1914-f5ec-4e67-9af8-5b258f6e5a23%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


As I pass the -v parameter Y using the plugin "[Publish over SSH]"

2015-06-15 Thread Erick Macedo
hi,

I need to connect to a machine with this command
"Ssh -v -Y root@10.10.20.57"

As I pass the -v parameter Y using the plugin "[Publish over SSH]"

tks

-- 
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/430cb065-cc86-4450-b6fe-80f69b71f6c6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: As I pass the -v parameter Y using the plugin "[Publish over SSH]"

2015-06-16 Thread Erick Macedo
any idea is welcome

Em segunda-feira, 15 de junho de 2015 16:10:30 UTC-3, Erick Macedo escreveu:
>
> hi,
>
> I need to connect to a machine with this command
> "Ssh -v -Y root@10.10.20.57"
>
> As I pass the -v parameter Y using the plugin "[Publish over SSH]"
>
> tks
>

-- 
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/445af1b4-b1be-484e-8499-2ac37a438771%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How to perform remote testing using jenkins and (selenium/protactor/grunt) ?

2015-06-16 Thread Erick Macedo
hi,

I have an application running on a server Windowns, is a javascript 
application controlled by grunt, I need to run some test protactor and 
selenium using the grunt test command.

I tried to do this via ssh, that works, but ssh limited screen resolution 
and ultimately hurts the test.

I wonder how usually you usually do to run the tests (protactor) via remote 
jenkins, any help is welcome.

thank

-- 
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/b708530e-e6d4-456b-b51f-df66fdb86b61%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Is there any plugin for ssh jenkins allowing pass a parameter in the connection.

2015-06-16 Thread Erick Macedo
Hi,

Is there any plugin for ssh jenkins allowing pass a parameter in the 
connection.

For example, "ssh username @ hostname Y" want to spend the Y,

It seems something as simple and jenkins does not allow this ??

tks

-- 
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/21b8a86c-7bb0-4bca-b2f7-c7c6b5f85073%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to perform remote testing using jenkins and (selenium/protactor/grunt) ?

2015-06-16 Thread Erick Macedo
 
 Any kind of help is welcome


Em terça-feira, 16 de junho de 2015 15:41:15 UTC-3, Erick Macedo escreveu:
>
> hi,
>
> I have an application running on a server Windowns, is a javascript 
> application controlled by grunt, I need to run some test protactor and 
> selenium using the grunt test command.
>
> I tried to do this via ssh, that works, but ssh limited screen resolution 
> and ultimately hurts the test.
>
> I wonder how usually you usually do to run the tests (protactor) via 
> remote jenkins, any help is welcome.
>
> thank
>

-- 
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/d26089a4-052a-4645-b2d9-c3efdb0b102f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Is there any plugin for ssh jenkins allowing pass a parameter in the connection.

2015-06-17 Thread Erick Macedo
? 

Em terça-feira, 16 de junho de 2015 18:48:50 UTC-3, Erick Macedo escreveu:
>
> Hi,
>
> Is there any plugin for ssh jenkins allowing pass a parameter in the 
> connection.
>
> For example, "ssh username @ hostname Y" want to spend the Y,
>
> It seems something as simple and jenkins does not allow this ??
>
> tks
>

-- 
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/20a089e6-c99f-47ad-af04-52000a909a12%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Perform testing (protactor / selenium) with jenkins with 1024x768 resolution

2015-06-18 Thread Erick Macedo
Hi, 

I'm working on an integration project continues using jenkins 
. 
I have installed Jenkins and cofigurado properly on a Windowns machine and 
run a command "grunt test" that performs a test 
 suite with protactor and 
selenium. 

The test run, but jenkins open a session with the OS and I can not see the 
execution, as I would see it? 

The biggest problem is the jenkins opens the browser at a lower resolution 
to 800x600 to run the test where just giving error mostly already tried 
using QRes.exe 

Example: "QRes.exe / x: 1024 / y: 768," more is generated the message: 
"Error: The graphics mode is not supported." 

I also tried using VNC with Xvnc plugin in jenkins and configured this way. 

command line = "C: \ Program Files \ RealVNC \ VNC Server \ vncserver: $ 
DISPLAY_NUMBER -geometry 1024x768" 

The setup worked for in the build log I can see the plugin running: 

? 

1
2
3
4
5
6
7
8
9
10
11
Initiated by the user anonymous
Building on the workspace C: \ Program Files (x86) \ Jenkins \ jobs \ Test 
screen \ workspace
System is not Unix, Xvfb will not be started
Starting Xvnc
[Workspace] $ C:\Program Files\RealVNC\VNC Server\ vncserver: 13 -geometry 
1024x768

? [4mRunning "protractor: run" (protractor) task [24m?
Using ChromeDriver directly ...
[Launcher] 1 Running instances of WebDriver ...

Terminating Xvnc.

But the test still end up failing because the resolution is still less than 
800X600, 

I do not know what to do to set up a resolution in jenkins, then ask for 
help come to you. 

Thank

-- 
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/bfe4285a-d532-4797-857d-0b7b5407bd51%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Perform testing (protactor / selenium) with jenkins with 1024x768 resolution

2015-06-20 Thread Erick Macedo
still can not make this work

Em quinta-feira, 18 de junho de 2015 17:21:20 UTC-3, Erick Macedo escreveu:
>
> Hi, 
>
> I'm working on an integration project continues using jenkins 
> <http://jenkins-ci.org/>. 
> I have installed Jenkins and cofigurado properly on a Windowns machine and 
> run a command "grunt test" that performs a test 
> <http://www.javaranch.com/unit-testing.jsp> suite with protactor and 
> selenium. 
>
> The test run, but jenkins open a session with the OS and I can not see the 
> execution, as I would see it? 
>
> The biggest problem is the jenkins opens the browser at a lower resolution 
> to 800x600 to run the test where just giving error mostly already tried 
> using QRes.exe 
>
> Example: "QRes.exe / x: 1024 / y: 768," more is generated the message: 
> "Error: The graphics mode is not supported." 
>
> I also tried using VNC with Xvnc plugin in jenkins and configured this 
> way. 
>
> command line = "C: \ Program Files \ RealVNC \ VNC Server \ vncserver: $ 
> DISPLAY_NUMBER -geometry 1024x768" 
>
> The setup worked for in the build log I can see the plugin running: 
>
> ? 
> <http://www.coderanch.com/t/651457/tools/Perform-testing-protactor-selenium-jenkins#>
> 1
> 2
> 3
> 4
> 5
> 6
> 7
> 8
> 9
> 10
> 11
> Initiated by the user anonymous
> Building on the workspace C: \ Program Files (x86) \ Jenkins \ jobs \ Test 
> screen \ workspace
> System is not Unix, Xvfb will not be started
> Starting Xvnc
> [Workspace] $ C:\Program Files\RealVNC\VNC Server\ vncserver: 13 -geometry 
> 1024x768
> 
> ? [4mRunning "protractor: run" (protractor) task [24m?
> Using ChromeDriver directly ...
> [Launcher] 1 Running instances of WebDriver ...
> 
> Terminating Xvnc.
>
> But the test still end up failing because the resolution is still less 
> than 800X600, 
>
> I do not know what to do to set up a resolution in jenkins, then ask for 
> help come to you. 
>
> Thank
>

-- 
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/4b482dc3-6baf-49a3-a859-ccdd3cbb54e8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Perform testing (protactor / selenium) with jenkins with 1024x768 resolution

2015-06-24 Thread Erick Macedo
=/

Em quinta-feira, 18 de junho de 2015 17:21:20 UTC-3, Erick Macedo escreveu:
>
> Hi, 
>
> I'm working on an integration project continues using jenkins 
> <http://jenkins-ci.org/>. 
> I have installed Jenkins and cofigurado properly on a Windowns machine and 
> run a command "grunt test" that performs a test 
> <http://www.javaranch.com/unit-testing.jsp> suite with protactor and 
> selenium. 
>
> The test run, but jenkins open a session with the OS and I can not see the 
> execution, as I would see it? 
>
> The biggest problem is the jenkins opens the browser at a lower resolution 
> to 800x600 to run the test where just giving error mostly already tried 
> using QRes.exe 
>
> Example: "QRes.exe / x: 1024 / y: 768," more is generated the message: 
> "Error: The graphics mode is not supported." 
>
> I also tried using VNC with Xvnc plugin in jenkins and configured this 
> way. 
>
> command line = "C: \ Program Files \ RealVNC \ VNC Server \ vncserver: $ 
> DISPLAY_NUMBER -geometry 1024x768" 
>
> The setup worked for in the build log I can see the plugin running: 
>
> ? 
> <http://www.coderanch.com/t/651457/tools/Perform-testing-protactor-selenium-jenkins#>
> 1
> 2
> 3
> 4
> 5
> 6
> 7
> 8
> 9
> 10
> 11
> Initiated by the user anonymous
> Building on the workspace C: \ Program Files (x86) \ Jenkins \ jobs \ Test 
> screen \ workspace
> System is not Unix, Xvfb will not be started
> Starting Xvnc
> [Workspace] $ C:\Program Files\RealVNC\VNC Server\ vncserver: 13 -geometry 
> 1024x768
> 
> ? [4mRunning "protractor: run" (protractor) task [24m?
> Using ChromeDriver directly ...
> [Launcher] 1 Running instances of WebDriver ...
> 
> Terminating Xvnc.
>
> But the test still end up failing because the resolution is still less 
> than 800X600, 
>
> I do not know what to do to set up a resolution in jenkins, then ask for 
> help come to you. 
>
> Thank
>

-- 
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/75216d70-1b91-4d9c-8062-ea12bef54bca%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.