3 Commits

Author SHA1 Message Date
Hanbin Lee
6408926a2d blog 작성을 위한 build 테스트 2023-03-12 19:54:15 +09:00
Hanbin Lee
01c39b333e modify: db 디렉토리 내용 수정 2023-03-12 19:48:57 +09:00
Hanbin Lee
c95a7ec867 Merge pull request #39 from beaniejoy/feature/38
Jenkins FlywayRunner plugin 이용한 DB Migrate stage 내용 수정
2023-03-12 19:47:18 +09:00
2 changed files with 11 additions and 11 deletions

View File

@@ -13,16 +13,16 @@ pipeline {
}
}
stage('DB Migrate') {
steps {
flywayrunner installationName: 'flywaytool-jenkins',
flywayCommand: 'info migrate validate',
commandLineArgs: "-configFiles=${FLYWAY_CONFIG}",
credentialsId: 'ecb29499-7272-4e8b-b3ab-a7a3ab7eafab',
url: '',
locations: "filesystem:${WORKSPACE}/db/migration"
}
}
// stage('DB Migrate') {
// steps {
// flywayrunner installationName: 'flywaytool-jenkins',
// flywayCommand: 'info migrate validate',
// commandLineArgs: "-configFiles=${FLYWAY_CONFIG}",
// credentialsId: 'ecb29499-7272-4e8b-b3ab-a7a3ab7eafab',
// url: '',
// locations: "filesystem:${WORKSPACE}/db/migration"
// }
// }
stage('Test') {
steps {

View File

@@ -29,7 +29,7 @@
- `dongne-common`
- entity, repository, error, security(jwt util) 등 관리하는 공통모듈
- `db`
- flyway migration(gradle) 적용 모듈
- flyway migration 관리 디렉토리
<br>