Add Jenkinsfile

This commit is contained in:
mnisyif 2024-09-15 23:28:21 +00:00
parent f7d26280da
commit 07c2ad71fd

21
Jenkinsfile vendored Normal file
View file

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