Jenkins Pipeline1 Jenkins Pipeline 개념 및 예제 Jenkins Pipeline 개념 젠킨스 파이프라인은 연속적인 작업들을 묶어서 관리할 수 있게 만드는 젠킨스 플러그인이다. 파이프라인 작성하는데 2가지 문법이 존재한다. Declarative pipeline { agent any stages { stage('Build') { steps { // } } stage('Test') { steps { // } } stage('Deploy') { steps { // } } } } Declarative Pipeline 문법 Scripted node { stage('Build') { // } stage('Test') { // } stage('Deploy') { // } } Scripted Pipeline 문법 사전 요구 사항 해당 예제를 수행하려면 아래와 같은 요구.. 2023. 1. 26. 이전 1 다음