add Jenkinsfile

This commit is contained in:
mii
2022-08-05 10:36:04 +09:00
parent 62aa5725ff
commit 694d14d738

16
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,16 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo "Build start."
}
post {
always {
echo "Build end."
}
}
}
}
}