Add JenkinsFile

This commit is contained in:
s464958 2024-11-28 20:22:15 +01:00
parent 34de785a6f
commit 0c8df1b6dc

20
JenkinsFile Normal file
View File

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