Manifiesto de IC
La integración continua es un proceso y un flujo de trabajo desarrollador/empaquetador. La entrega continua es un proceso de lanzamiento y flujo de trabajo.
La integración continua tiene como objetivo garantizar que los cambios interrumpidos no afecten a otros desarrolladores, empaquetadores, encargados de mantenimiento o usuarios. La entrega continua tiene como objetivo que los cambios rotos no se entreguen ni se publiquen.
La integración continua nos permite corregir rápidamente el rumbo mientras desarrollamos software hacia un objetivo en movimiento. Los comentarios que la integración continua proporciona son vitales para una entrega ágil y rápida de software. Las pruebas tardías, mucho después de que se produce un cambio, no avanzan al ritmo de Fedora.
Como hay diversos esfuerzos de Integración Continua, necesitamos establecer las reglas básicas para asegurar que estamos jugando el mismo juego. Cuando llamamos “fútbol” a un juego necesitamos ponernos de acuerdo sobre lo que eso significa. Es posible que tengamos diferentes marcos, implementaciones o pruebas, pero necesitamos jugar el mismo juego.
The Definition
You don’t get to call it “Continuous Integration” unless you …
-
Assemble it together like in production, then test drive it like a user. This is Integration.
-
Do those integration tests for every single "change". This is Continuous.
Without these, it may be “unit testing”, “acceptance testing”, “regression testing”, “quality assurance”, or other steps in the pipeline … but it’s not “continuous integration”. You might even run the same tests again later as part of one of these other testing processes.
Building a component, composing it with others, assembling it into a production-like system, is all part of integration. A “change stream” is how we refer to the changes that integration continuously acts upon. A developer is someone who instigated and/or implemented the change and is our target for feedback from the tests. In Fedora this is a packager or maintainer. Usually we apply that integration to a stream of software changes, but at other times it is hardware changes, or other changes.
Continuous delivery is taking some of those successful integrations and delivering them.
The Manifesto
-
A test has zero value until its result affects the behavior of an observer.
-
The best observer for a test result is the developer or packager who instigated and/or initiated the change being integrated.
-
The benefit of continuous integration is inversely proportional to the size of the change. Many iterative small changes far outweigh a massive bundled change.
-
Rapid feedback to the developer or packager of the change will cause them to pay attention. Aim for hours not days to provide test results.
-
Packagers only take responsibility for tests that they can contribute to.
-
Packagers respect tests and testing systems that produce reliable results. Conversely they ignore and shun tests and systems that are flakey.
-
Packagers should not have to search for test results outside of their workflow.
-
Packagers should be able to run individual tests on their own machines.
-
The ideal test can be updated in lockstep with the changes it is testing. Aim to store a test along with the software that the test is most related to.
-
The best place to test a change is before that change affects anyone else.
-
A small suite of tests that follows these principles is more valuable to continuous integration than large suite of tests that does not.
The Rules
Continuous Integration becomes self-sustaining by following two basic rules …
In order to scale our CI effort, it must be made self-sustaining. This is not that hard. These basic rules are the requirements to build a self-sustaining cycle where the tests grow rather than rot.
1. Tests must be changeable by people making the software change
Developers and packagers must be able to contribute changes to the tests and run them. The tests become the responsibility of packagers, and the packaging cycle. It is possible to start off with a small corpus of tests that meet this requirement. This small corpus will eventually outpace any “non-Open Source” tests.
Reason: Open source, reproducible tests allow developers and packagers to contribute to, fix out of date tests, and grow the test suites. They then pay attention to the tests and maintain them.
2. Rapid Feedback to the Person who makes a Change
The developer or packager who makes change to a package or container needs rapid feedback from the continuous integration. The change should not proceed until that person reacts to integration failure results.
Reason: Rapid feedback causes developers and packagers to
-
pay attention to the tests
-
fix problems while the change is fresh in their mind and
-
gate the change on the tests.
Want to help? Learn how to contribute to Fedora Docs ›