1
0
Fork 0
forked from glenux/mfm

ci: add Jenkinsfile

This commit is contained in:
Glenn Y. Rolland 2024-03-29 15:15:39 +01:00
parent 36fd938325
commit e6bb63c807

22
Jenkinsfile vendored Normal file
View file

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