Complete the code to name the first stage in a typical CI/CD pipeline.
pipeline_stages = ['[1]', 'Build', 'Test', 'Deploy']
The first stage in a CI/CD pipeline is usually the Source stage, where code is fetched from version control.
Complete the code to name the test gate that checks if code meets quality standards before deployment.
test_gates = ['Unit Test', '[1]', 'Integration Test', 'Acceptance Test']
The Build Verification test gate ensures the build is stable and meets quality standards before moving forward.
Fix the error in the test gate sequence by selecting the correct next stage after 'Build'.
pipeline_stages = ['Source', 'Build', '[1]', 'Deploy']
After the Build stage, the next stage is usually Test to verify the build quality.
Fill both blanks to complete the test gate check that ensures code quality and security before deployment.
test_gates = ['Unit Test', '[1]', '[2]', 'Acceptance Test']
The Code Review and Security Scan gates help ensure code quality and security before deployment.
Fill all three blanks to complete the dictionary mapping pipeline stages to their main test gates.
pipeline_test_gates = {
'Build': '[1]',
'Test': '[2]',
'Deploy': '[3]'
}The Build stage uses Build Verification, Test stage uses Integration Test, and Deploy stage uses Acceptance Test as main test gates.