[api] compose 설정 및 dockerfile 생성 jenkinsfile생성 logback 기본생성 배너파일추가
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
pipeline {
|
||||
agent any
|
||||
|
||||
options {
|
||||
timestamps()
|
||||
disableConcurrentBuilds()
|
||||
}
|
||||
|
||||
environment {
|
||||
// ===== Registry =====
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('1) Git check out') {
|
||||
steps {
|
||||
checkout scm
|
||||
}
|
||||
}
|
||||
|
||||
stage('2) Build (Gradle)') {
|
||||
steps {
|
||||
sh '''
|
||||
set -e
|
||||
chmod +x ./gradlew
|
||||
./gradlew clean build -x test
|
||||
'''
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user