Continuous Integration

What is Continuous Integration?

Whenever we write software, we want to be ceratin that the changes we make are not introducing unexpected problems. We should always write tests to verify new functionality works as we intend, but there are plenty of pitfalls:

  1. Does the change work on different operating systems?

  2. What about with different software versions, including versions of libraries, frameworks, and dependencies?

  3. What about on different hardware?

  4. Does it unexpectedly rely on specific user data on your development machine?

  5. Is the change compatible with changes other developers are making?

We need an automated way to address these pitfalls in a quick and consistent way. In a nutshell, this is Continuous Integration (CI).

CI is a software development practice where developers integrate code into a shared repository frequently. Each time this happens, the software is automatically verified to detect integration errors as quickly as possible. The primary goal of CI is to catch and address bugs, integration problems, and other issues early, when they are easier to fix.

Here are some key princples of CI:

  1. Maintain a single source repository: All code and dependencies should be versioned and stored in a single, shared, and reliable repository. This is the primary source of all truth for the project, and everyone has access to it.

  2. Automate the build: The process of building the project — compiling the source code into executable code, packaging that code, and creating installers — should be automated.

  3. Make your build self-testing: Once the code is built, automated tests should run to check that the software behaves as expected. This can range from unit tests (which test individual components in isolation) to integration tests (which test how components work together) to testing code coverage.

  4. Everyone commits to the maineline frequently: Developers should integrate their work frequently. This prevents integration conflicts from becoming too complex and difficult to resolve.

  5. Automated builds should happen on an integration machine: Updated code should be built and tested on a separate integration machine, not a developer's local machine. This ensures that the build process works in a clean, standardized environment.

  6. Keep the build fast: The build and test process should be fast to give quick feedback. If the process is slow, developers will be tempted to commit less frequently.

  7. Everyone can see what's happening: All results from building and testing (like output, logs, test results) should be available to all team members. This increases transparency and makes it easier to spot and fix issues.

  8. Automate deployment: The process of deploying the software should be automated, ensuring it's easily reproducible and reducing the chances of human error. This might include creating Python wheels and deploying them to PyPI, or building public documentation pages.

How do we do it?

There are many CI infrastructures and services, free and paid for, and subject to change as they evolve their features.

In this course you will be using GitHub Actions, which unsurprisingly is available as part of GitHub.

There are other free options, for instance Travis CI and AppVeyor. All three of these make use of common features across many CI implementations, and you are certainly advised to look at the options to see some of the commonalities and differences in how features are typically provided.

This course

In this course we aim to walk you through a hands-on session which will set up CI for a small Python project, and see some of its benefits in action. We will go through:

  1. An introduction to GitHub actions (link)

  2. Generating code coverage information (link)

  3. Generating and deploying documenation (link)

Getting started

Go to https://github.com/OxfordRSE/ci_course_start and press "Use this template" -> "Create a new repository".

This will set up a repository in your own GitHub account with the same files as the template.

You can name it anything you like. Clone your new repository, and you're ready for the next lesson.