26 lines
272 B
Plaintext
26 lines
272 B
Plaintext
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Check out from version control') {
|
|
steps {
|
|
checkout scm
|
|
}
|
|
}
|
|
|
|
stage('Shell Script') {
|
|
steps {
|
|
sh '''#!/bin/bash
|
|
sh './script.sh'
|
|
'''
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|