[📝] Jenkins 구축
All checks were successful
Front/pipeline/head This commit looks good

This commit is contained in:
김선규 2024-07-11 17:22:13 +09:00
parent 910a810626
commit cf03229c77

10
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('stage 1') {
steps {
echo "Hello world"
}
}
}
}