11 lines
175 B
Plaintext
11 lines
175 B
Plaintext
|
node {
|
||
|
|
||
|
def app
|
||
|
|
||
|
stage('Clone repository') {
|
||
|
/* Let's make sure we have the repository cloned to our workspace */
|
||
|
|
||
|
checkout scm
|
||
|
}
|
||
|
|
||
|
}
|