Add text to Jenkinsfile

This commit is contained in:
Małgorzata Róg 2023-10-24 18:03:37 +02:00
parent 5b8bd75256
commit c81a2d53c5

21
Jenkinsfile vendored
View File

@ -0,0 +1,21 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}