Re: first configuring "Jenkins"

2017-09-20 Thread Mark Waite
I use a docker image with copies of the relevant configuration files copied from a system that behaves the way I want. It has worked quite well for me, and has avoided me spending any significant time investigating how to script the initial configuration. Refer to

Re: TEST-jasmine.xml is 47 years old

2017-09-20 Thread jiyaolin9
No,it checked into the Jenkins home 在 2017年9月20日星期三 UTC+8下午7:41:17,Daniel Beck写道: > > Is the 'target' directory checked into your SCM? > > > On 20. Sep 2017, at 10:57, jiya...@gmail.com wrote: > > > > Hi, > > > > when build a maven project with clean package > -Dmaven.test.skip=true,some

Jenkins V 2.79 Error

2017-09-20 Thread Jai Bora
Hi All, I am facing an Error message with Jenkins Version 2.79… While Create a New Job or editing an existing job getting below error message.. please help me out with this issue Error [image: Inline image 1] A problem occurred while processing the request. Please check our bug

Jenkins sqlplus script runner plugin error ORA-12541: TNS:no listener

2017-09-20 Thread rakesh reddy
Hi , We are getting the below error while we we try to run basic command through sqlplus script runner plugin. Please help me. Using ORACLE_HOME =/u01/ora/10.2.0/db_1 -- Getting SQLPlus version Process exited with status 0

EC2 cloud plugin config is removed at restart

2017-09-20 Thread ken . petti
I’m seeing a problem with the EC2 plugin configuration. I have a stored config.xml file that I deploy to a new Jenkins master, overwriting the default. When I restart the service or reload configuration, that file is modified and

first configuring "Jenkins"

2017-09-20 Thread Diego Lagos
I would like to ask you if there is a documentation explaining how to configure through files, plugins, nodes, git repositories, etc ... so you do not have to use the graphics console every time -- You received this message because you are subscribed to the Google Groups "Jenkins Users"

Jenkins conditional post-based action in a pipeline stage

2017-09-20 Thread Kai
Hi, I have a pipeline with multiple stages and for my integration test stage, I trigger my integration test. I wanted to setup some post-step based logic where if the test job passes, it does some action and if the test job fails it performs a different action (e.g. send email) . stage('Run

Jenkins and Git or Proxy Issue Pushing Tags

2017-09-20 Thread Jimmy Ray
So, I have pipeline and freestyle jobs that push tags to GitHub via the pattern: git push This is working in our Cloudbees Jenkins Enterprise instances (CJP Client Master 2.32.3.2), and my OSX command line. I also have an OSS Jenkins server (2.60.2) running on OSX. The OSS Jenkins server

Extensible Choice - Maven Artifact Choice Parameter (Nexus)

2017-09-20 Thread sivasankar Reddy
Hi, I tried Extensible Choice Parameter plugin (1.3.3 & 1.4.1) versions . along with Maven Artifact ChoiceListProvider (Nexus)

Re: TEST-jasmine.xml is 47 years old

2017-09-20 Thread Daniel Beck
Is the 'target' directory checked into your SCM? > On 20. Sep 2017, at 10:57, jiyaol...@gmail.com wrote: > > Hi, > > when build a maven project with clean package -Dmaven.test.skip=true,some > moudles show below,and it caused the build faild. > [INFO] > --- jasmine-maven-plugin:2.0:test

Re: How to pass paramater to process environment variable?

2017-09-20 Thread Idan Adar
Okay. How can I then use this in combination with: https://github.com/jansepar/node-jenkins-api#build_with_params I used parameters as a way to test getting a value "externally". With this working, the end goal is to trigger the job remotely with a parameter, and the parameter's value then

Re: How to pass paramater to process environment variable?

2017-09-20 Thread Steven Foster
You should define the parameters in the pipeline also: https://jenkins.io/doc/book/pipeline/syntax/#parameters currently there is some disconnect in the project configuration UI for pipeline jobs, many of the options there need to actually be defined in the pipeline. On Wednesday, September

TEST-jasmine.xml is 47 years old

2017-09-20 Thread jiyaolin9
Hi, when build a maven project with clean package -Dmaven.test.skip=true,some moudles show below,and it caused the build faild. [INFO] *--- jasmine-maven-plugin:2.0:test (default) @ matterhorn-engage-theodul-plugin-description --- *[INFO] Skipping Jasmine Specs [JENKINS] Recording test results

Re: build user id in declarative pipeline

2017-09-20 Thread Russ Cox
Found a solution, setting the variable within a 'script' block. The variable is then available across all stages. That was a ballache to find stage("Checkout") { steps { git url: "ssh://x.git", credentialsId: 'x' wrap([$class: 'BuildUser']) {

How to pass paramater to process environment variable?

2017-09-20 Thread Idan Adar
The following is my current pipeline: stage ("My Stage") { environment { cloudcerts_iamConfig_preprod = credentials( '${cloudcerts_iamConfig_preprod}') } steps { // Setup packages and run tests sh '''

Re: Major update to Matrix Authorization Plugin on experimental update center

2017-09-20 Thread Daniel Beck
I just released 2.0-beta-3. It includes compatibility with the pipeline `properties()` step. I currently plan no further changes before the final 2.0 release. Please help test this, and file issues as described in the previous email. Thanks, Daniel > On 16. Sep 2017, at 02:23, Daniel Beck

Re: Declarative Jenkinsfile for pullrequests.

2017-09-20 Thread Kai Mildner
I'm using the declarative Format, maybe with scripted parts? I'm not sure. Here is a short example how i do the checkout. pipeline{ agent {label 'master'} triggers { pollSCM('H 0 1 1 0') } options{ buildDiscarder(logRotator(numToKeepStr: '3')) timeout(time: 1, unit: