Create Jenkinsfile

This commit is contained in:
Zheyuan Wu
2025-02-19 14:36:38 -06:00
committed by GitHub
parent 0a6dc8cf69
commit 424098bdcf

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 'Deploying....'
}
}
}
}