python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to create either Windows or Linux instances using terraform code in jenkins pipeline using parameters?
In git have to create only one branch ie. master branch where it has linux ami and windows ami mentioned in terraform code.
In jenkins while running the pipeline, user should manually enter linux or ...
Nithiya Joseph
Votes: 0
Answers: 1
java.lang.StackOverflowError when running cucumber java from Katalon Studio
when ever we run:
import com.kms.katalon.core.cucumber.keyword.CucumberBuiltinKeywords as CucumberKW
CucumberKW.runFeatureFileWithTags(featureFileFolder, (([finalTag]) as String[]))
we are using cuc...
HRoark
Votes: 0
Answers: 0
env variable as defaultValue in Jenkinsfile
pipline{
agent any
environment{
GIT_HASH = "${GIT_COMMIT.substring(0, 7)}"
}
parameters{
string(
name: ...

Mukund Ranjan
Votes: 0
Answers: 0
Need option to fill values in Jenkins parameterized pipeline script stored in Github whenever it run
I have created a jenkins parameterized pipeline script as below. I have stored it on my Github repository.
properties([parameters([string(defaultValue: 'Devasish', description: 'Enter your name', name...
Data Geek
Votes: 0
Answers: 1