Write a stageless CI/CD pipeline using GitLab 14.2

1 · · Aug. 24, 2021, 10:44 p.m.
GitLab CI/CD technology has historically divided a pipeline into stages based on the typical development workflow. Now that GitLab 14.2 has launched, users can speed up cycle times by using the needs command to write a complete CI/CD pipeline with every job in the single stage. In fact, you can omit stages completely and have a "stageless" pipeline that executes entirely based on the needs dependencies. Understanding stages In GitLab CI/CD, you use stages to group jobs based on the development w...