40.9k views
3 votes
Fictional corp. has previously had a release schedule where changes were released into production on the first and third saturday of every month. however, it has been suggested that it would be more efficient to push the changes to production as soon as the code has passed testing. which of the following methodologies is being suggested?

a. continuous integration
b. continuous deployment
c. continuous delivery
d. continuous migration

1 Answer

3 votes

Final answer:

The suggested methodology to push changes to production as soon as the code has passed testing is continuous deployment, an automated process that ensures stable code changes are immediately deployed to a production environment.

Step-by-step explanation:

The methodology being suggested for Fictional Corp. to push changes to production as soon as the code has passed testing is continuous deployment. Continuous deployment is a software release process that uses automated testing to validate if changes to a codebase are correct and stable for immediate deployment to a production environment. This differs from continuous delivery which requires a manual step to deploy changes to production, and continuous integration, which focuses solely on the integration of new code to ensure it does not break the build.

User Byoung
by
7.9k points