Add new file

This commit is contained in:
Nana Janashia
2021-01-01 17:13:15 +00:00
parent 0f6500fd32
commit 2fda2eb1dc

28
Jenkinsfile-basic Normal file
View File

@@ -0,0 +1,28 @@
#!/usr/bin/env groovy
pipeline {
agent none
stages {
stage('build') {
steps {
script {
echo "Building the application..."
}
}
}
stage('test') {
steps {
script {
echo "Testing the application..."
}
}
}
stage('deploy') {
steps {
script {
echo "Deploying the application..."
}
}
}
}
}