[젠킨스(Jenkins)] 용어
2021. 11. 11. 18:16- 빌드할 때, 파라미터에 따라 유연하게 빌드하기 위함. (e.g. python 버전을 3버전할지, 2버전할지)
젠킨스 문법
https://www.jenkins.io/doc/book/pipeline/syntax/
docker,
on a docker,
Parameters 파트
params 오브젝트에의해서 만들어짐.
Example 10. Parameters, Declarative Pipeline
keyword
docker
파이프라인, stage 주어진 컨테이너로,
그 컨테이너는 사전에 구성된 어떤 노드 위에서 동적으로 제공된 거임.
Declarative Pipeline
Declarative Pipeline is a relatively recent addition to Jenkins Pipeline [1] which presents a more simplified and opinionated syntax on top of the Pipeline sub-systems.
All valid Declarative Pipelines must be enclosed within a pipeline block, for example:
pipeline {
/* insert Declarative Pipeline here */
}
agent
The agent section specifies where the entire Pipeline, or a specific stage, will execute in the Jenkins environment depending on where the agent section is placed. The section must be defined at the top-level inside the pipeline block, but stage-level usage is optional.
'젠킨스(Jenkins) > 젠킨스(Jenkins)' 카테고리의 다른 글
[젠킨스(Jenkins)] 암호화된 credentials secret key 확인하는 방법 (0) | 2023.03.08 |
---|---|
[젠킨스(Jenkins)] 윈도우에서 젠킨스 설치하기 + 관리하기 (0) | 2023.01.05 |
[젠킨스(Jenkins)] Gerrit 서버와 연동. (0) | 2021.09.02 |
[젠킨스(Jenkins)] 젠킨스 archive artifacts의 포맷 (0) | 2021.06.27 |
[젠킨스(Jenkins)] (젠킨스 main) 기초1. 파이프라인 기초 문법 (0) | 2021.05.18 |