jenkinsfile 추가
gitea-pipeline/pipeline/head This commit looks good Details

This commit is contained in:
yunsukyung 2023-08-31 11:28:14 +09:00
parent 4795c9901d
commit 446fde6322
1 changed files with 10 additions and 0 deletions

10
Jenkinsfile vendored Normal file
View File

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