CI meeting 11/22

Here are the notes from the last meeting:

RIOT CI meeting 11/22

Details

When: 14.11.22 13:30h Berlin time Where: Jitsi Meet

Previous meeting notes: RIOT CI meeting 10/22 - HackMD

Participants

Agenda

  • Finish Murdock Migration
  • setup bors

Notes

Murdock Migration

setup bors

(added after the meeting as we forgot to write down this explanation) The intended workflow is:

  1. regular PR commits get built by CI as usual, but doing a quick-build (building only a subset of all boards), unless “CI: full build” is set
  2. once that passes and the PR is ACKed, instead of merging using the merge button, we use bors to merge by typing “bors merge”.
  3. bors takes the PR, pushes it to the “testing” branch
  4. CI does a full build of “testing”
  5. on success, bors merges testing into master

The main benefits are

  1. a quickbuild / full build scheme (“regular” PR builds will be <5 minutes, but only fully built branches get merged into master)
  2. bors does “rollups”, meaning, if multiple PRs are to be “bors merged”, bors merges them together, tests them together and merges them together. That’s more efficient than doing this sequentially, and prevents semantic merge conflicts (e.g., PR a and b pass CI individually, but fail when both merged, breaking master).

Once fully implemented, using bors will be a workflow change (no more “pressing the green button”, but typing “bors merge” instead). But we’ve been using bors for RIOT-OS/riotdocker for a long time now, the experience was good (as opposed to disruptive).

This PR just adds the necessary bors configuration, and once merged will allow using bors to merge PRs using “bors merge”, but the previous workflow is still in place (manual merging can be done, and “regular” PR builds are still full builds).