ium_444354/Jenkinsfile2

26 lines
272 B
Plaintext
Raw Normal View History

2022-03-24 17:03:41 +01:00
pipeline {
agent any
stages {
stage('Check out from version control') {
steps {
checkout scm
}
}
stage('Shell Script') {
steps {
sh '''#!/bin/bash
sh './script.sh'
'''
}
}
}
}