Jenkins 1.x에서 Jenkins 2로 마이그레이션 중입니다. Jenkinsfile을 사용하여 응용 프로그램을 빌드하고 배포하려고합니다. 나는 gradle 응용 프로그램을 만들 수 있지만 Jenkinsfile을 사용하여 AWS Codedeploy를 통해 응용 프로그램을 배포하는 것에 대해 혼란 스럽습니다.Jenkinsfile 및 AWS 코드 배포를 사용하여 응용 프로그램 배포
여기에 나는 많은 자습서를 검색했지만 그들이 AWS 코드 대신 플러그인을 전개 사용하고 내 jenkinsfile
node {
// Mark the code checkout 'stage'....
stage 'Checkout'
// Get some code from a GitHub repository
git branch: 'master',
credentialsId: 'xxxxxxxx-xxxxx-xxxxx-xxxxx-xxxxxxxx',
url: 'https://github.com/somerepo/someapplication.git'
// Mark the code build 'stage'....
stage 'Build'
// Run the gradle build
sh '/usr/share/gradle/bin/gradle build -x test -q buildZip -Pmule_env=aws-dev -Pmule_config=server'
stage 'Deploy via Codedeploy'
//Run using codedeploy agent
}
입니다. Jenkinsfile을 사용하여 AWS Codedeploy를 통해 애플리케이션을 배포 할 수 있습니까?
감사합니다.