Which of these is not mandated for a CI pipeline
1.Configuration Code
2.Application Code
3.Infrastructure as Code
4.Functional testing
Answers
Application code is not mandated for CI PIPELINE.
Hence option 2 is the correct answer for above question.
Thank you for asking this question.
I hope the above answer is satisfactory.
feel free to ask more questions.
Thanks and Regards.
Answer:
(2) Application code
Explanation:
CI stands for Continues Integration which is very much similar to the SDLC. In the software development, the code will be written, built then it will be tested in units and finally it will be deployed and will be monitored in the live environment. If there is an error found in any of the phases, then again the code goes for change and again the cycle is executed. Each time the code is change. A version number is marked in order to identify how many changes are done and to keep the latest changed software to send to the CI pipeline. Here the application code is not required since the code is going to build as an executable files.