SocialHelper/Jenkinsfile

26 lines
466 B
Plaintext
Raw Normal View History

2020-12-03 14:03:08 +01:00
pipeline {
2020-12-03 14:04:28 +01:00
agent any
2020-12-03 13:58:56 +01:00
stages {
2020-12-03 14:07:59 +01:00
stage('Clone repository') {
steps {
checkout scm
}
}
2020-12-03 14:04:28 +01:00
stage('Build') {
2020-12-03 13:58:56 +01:00
steps {
2020-12-03 14:04:28 +01:00
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
2020-12-03 13:58:56 +01:00
}
}
2020-12-03 13:55:48 +01:00
}
2020-12-03 13:53:44 +01:00
}