needs
and resource_group
키워드와 gitlab API를 통해 구현할 수 있다고 생각합니다 .
모든 작업은 자신이 속한 파이프 라인 ID를받습니다 predefined-variable
. gitlab API를 사용하면 파이프 라인에서 다른 작업의 상태를 볼 수 있습니다. 이 상태 needs
와 resource_group
키워드를 사용할 수 있다면 원하는 것을 달성 할 수 있다고 생각합니다. 자세한 내용은 아래 코드 설명 및 주석을 참조하십시오.
stages:
- ready
- build
job1:
stage: build
needs: [starting_signal]
script:
- sleep 10 && echo "job1"
job2:
stage: build
needs: [starting_signal]
script:
- sleep 20 && echo "job2"
job3:
stage: build
needs: [starting_signal]
script:
- sleep 30 && echo "job3"
starting_signal:
stage: ready
script:
- # TODO: You need to implement it using the GitLab API.
- # The starting condition for "job1-3" is
- # that this `starting_signal` job finished successfully.
- # And the condition that ends with the success of this job
- # is that `traffic_light` becomes running.
traffic_light:
stage: ready
resource_group: traffic_light
script:
- # TODO: You need to implement it using the GitLab API.
- # The end condition for `traffic_light` is
- # the end of job1-3 execution.
- # In other words, this job must be checked and waited
- # through gitlab api until job 1,2,3 is finished.
- # Since this job locks the execution of a `traffic_light` job
- # in another pipeline, the `starting_signal` job in another
- # pipeline does not succeed.
(나는 그것을 직접 테스트하지 않았 으므로이 방법을 검토해야합니다.)
추천 :