-
Bug
-
Resolution: Unresolved
-
Critical
-
None
-
* Operating System: Jenkins Master: Ubuntu 16.04 LTS 64bit; Slave: iOS 10.12.4, 64bit
* JRE/JDK vendors and versions: Jenkins Master: 1.8.0_121
* Jenkins Master: 2.46.2; SSH Slaves plugin: 1.17
* Running Jenkins directly (Not in container)
* Jenkins installation: sudo apt install jenkins
* Web Browser: Chrome 58.0.3029.96 (64-bit) (latest)
* Operating System: Jenkins Master: Ubuntu 16.04 LTS 64bit; Slave: iOS 10.12.4, 64bit * JRE/JDK vendors and versions: Jenkins Master: 1.8.0_121 * Jenkins Master: 2.46.2; SSH Slaves plugin: 1.17 * Running Jenkins directly (Not in container) * Jenkins installation: sudo apt install jenkins * Web Browser: Chrome 58.0.3029.96 (64-bit) (latest)
Slave settings:
- The # of executor set as 2.
- The Launch Method is: Launch agent via execution of command on the master:
ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null devops@my.macmini.com java -jar /Users/devops/slave.jar
Cannot use launch slave agent via SSH, due to issue: https://issues.jenkins-ci.org/browse/JENKINS-26495
- Details as below:
Job execution
- multiple builds executed at the same time on same node:
- Jenkins file:
node ('ios') { stage ("Preparation") { // repo checkout } stage ("Build") { // npm install // npm run my-command } ... }