Create Jenkinsfile

Signed-off-by: wodnr533 <wodnr533@naver.com>
This commit is contained in:
wodnr533 2025-09-02 15:47:49 +09:00 committed by GitHub
parent 30aab0ae76
commit dde8764981
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

11
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,11 @@
pipeline {
agent any
stages{
stage('Hello'){
steps {
echo 'Hello World'
}
}
}
}