You're reading the documentation for a version of ROS 2 that has reached its EOL (end-of-life), and is no longer officially supported. If you want up-to-date information, please have a look at Galactic.
Build cop and build farmer guide
Table of Contents
This page covers two rotating developer roles we have on the ROS 2 team, the build cop and the build farmer. These two roles are related, but subtly different.
The build cop is responsible for monitoring our Continuous Integration (CI) server to make sure our “nightly” jobs and “packaging” jobs do not accumulate new regressions. This allows us to build on relatively stable “ci” (or “manual”) jobs when checking to see if a new feature or bug fix introduces any new regressions.
The build farmer, on the other hand, is responsible for ensuring that the machines that run all of our CI jobs are up, running, and up-to-date, so that they are available for other developers to check their pull requests.
These two jobs have so far been the same person for periods of about two weeks, but they are separated here so that they could be different people in the future and to make a distinction between the roles and responsibilities.
This document is meant mostly for ROS 2 team developers, but it might be useful for others too.
On-boarding
If you are becoming the next build cop or build farmer you should:
Make sure you are subscribed to and have the “deliver every email” option turned on for this mailing list:
Make sure you are “watching” this GitHub repository:
Talk with the previous build cop and/or build farmer about on-going issues
Update the description of the main view on Jenkins to the current date and your name:
Retirement
If you are finishing your stint as either build cop or build farmer you should:
Unsubscribe or switch to “digest” for this mailing list:
“Unwatch” this GitHub repository:
Summarize the on-going issues for the next build cop or build farmer to which you are handing off
Build Cop
This section assumes that you have reviewed the ROS 2 on boarding document.
Mission
The goal of the build cop is to keep the jobs “green” (succeeding without test failures or warnings) on the buildfarm and to report any regression to the appropriate person. This will reduce the overhead of several people looking at, or investigating, the same build failures. This will also allow the other people on the team not to receive nightly email for the failing and/or unstable builds.
Build Cop Tasks
Every morning the build cop should go through all the nightly jobs and packaging jobs and act on new failing or unstable jobs. The “ci” jobs, which are started manually by developers, are not the responsibility of the build cop unless all “ci” are failing, which would indicate something was merged to the default branches which is broken. How to classify and deal with new failures is described in the next section.
Additionally, the build cop should strive to keep track of existing issues which are either preexisting or cannot be resolved with a day or so. Issues are tracked on this repository which only the build cop must be “watching” (getting GitHub notifications), though anyone interested can follow it too:
https://github.com/ros2/build_cop/issues
The above repository is also used to track Build Farmer issues. It is meant to be a way for the build cop or build farmer to track long running items for handing off to the next person and so they can “mention” individuals on particular issues without the whole team getting notified of every issue.
Types of Failures
Each failure can be categorized into one of a few classifications:
Node failure:
failures which appear to be due to a machine configuration and not a code change
pass it on to the build farmer
Trivial failure:
Linter failure
New warnings
Critical failure:
Breaking builds on the “default” branch
Regression (existing tests which were passing are now failing)
New tests that are failing (never were passing)
Important failure:
New feature which is not fully covered by tests
Increase flakiness (new flaky tests or made existing flaky tests more flaky)
New Failure Actions
In each case different actions should be taken by the build cop:
Trivial failure should be fixed by the Build Cop right away:
Pushed on a branch
Tested on CI
Merged to the default branch
Add a comment to the PR introducing the failure referencing the fixing commit
Critical failures:
Failure should be reported on the PR introducing it by tagging the submitter and the reviewer that +1’d it.
Submitter of the PR has to act on it during the next half day by either:
Reverting the change and ticketing the problem / comment on the PR the reason it’s been reverted
Submit a patch to fix the failure
Important failures:
Failure should be reported on the PR introducing it by tagging the submitter + the reviewer that +1’d it.
Submitter has to either:
Address it the same week
Add it to the next sprint
Tips
You can search for PRs merged between two dates with, e.g.:
(note that Fast RTPS and other external repos won’t appear)
To get the exact list of code that changed, generate a diff between the output of
vcs export --exact
between two builds.This is particularly useful for external repos such as Fast RTPS where old commits may get pushed to the master branch overnight, and are difficult to spot in the GitHub UI.
Times displayed at the top of Jenkins jobs are in UTC. You can convert the times with e.g.:
If linter failures occur overnight it is usually because of a new version of a linter.
Create a diff of the last
pip freeze
output of two builds to see which versions changed.If it’s a regression in a dependency you can pin the older version temporarily, see this PR for an example.
Build Farmer
This section assumes that you have reviewed the ROS 2 on boarding document.
Mission
The mission of the build farmer is to keep the build farm in a healthy, up-to-date state. Ideally all Jenkins nodes will have the same/latest version of every package. This will require monitoring and patching up any node when things come up.
Build Farmer Tasks
Monitor the buildfarm (using the https://groups.google.com/forum/#!forum/ros2-buildfarm mailing list for email notifications)
Take failing nodes off-line with descriptive message about the issue and investigate the failure ASAP.
Taking a node off-line:
log in ci.ros2.org
click on the node in the left column of Jenkins UI (e.g. osx_slave_mini1)
click on “Mark this node temporary off-line” button (top right corner)
Investigate the failure (see section below)
Report error and fixing attempt using the Build Farmer Reporting Form
If the same problem and action is taken on multiple nodes, select all the relevant nodes in the form before submitting it
If fixing attempt failed:
Keep the node off-line on the farm
Update the reason for node being off-line
Put the status and error message in the status sheet of the logbook
Allocate time in the next few days to dive in the problem
If you rescue a previously off-line node:
Update the status sheet of the logbook by:
Removing the error message in the status column
Update the date next to it
Once investigation is finished, clean the machine: close all your windows, stash or remove any local changes
Rationale
Anybody logging into the machine needs to know that no one is working on it
If the machine reboots the machine needs to be in an operational state without local changes
Making sure install instructions are up to date
Use the existing logbook to put together an FAQ or best practice to rescue nodes
How to Investigate a Failing Node
If the node failed to build, look at the console output of the failing build:
Click on the link of the failing job received by email or go to ci.ros2.org and click on the number (e.g. #2345) next to the failing job(red icon).
Click on Console Output in the left column
Look for the reason of the failure
If the failure is not due to a machine configuration, relay to the build cop
If you need to access a machine:
See this spreadsheet (private) for credentials for all the different Jenkins Nodes:
For machines hosted at OSRF, you’ll need to be on the OSRF network or have a VPN connection.
For machines which require ssh keys ask on ros@osrfoundation.org for your public keys to be added.
The Packet.net nodes (with “packet” in the name):
Can be managed by logging in at https://packet.net with
<brian’s email address>/<the usual company password>
This will change after we set up a team account to manage servers.
Can be accessed with Tully’s or Brian’s ssh key.
This will change after we set up a team account to manage servers.
Troubleshooting
If a node goes off-line:
For machines with VNC, you should try that first because many failures can be due to pop-up windows or required updates
If you don’t have any pop-ups and relaunching the Jenkins client doesn’t fix it, then you’ll have to start troubleshooting.
Looking at configuration difference between the nodes may be useful (java version, pip freeze, etc.)
For Linux nodes that have gone off-line (e.g. because of a reboot), they can be reconnected through the Jenkins web interface of that node
Other tips:
The environment variables on Windows machines are output at the beginning of Jenkins jobs (search for ==> set
).
If you are modifying environment variables on Windows nodes, you may need to restart the machine before the changes are reflected in the jobs.
This is due to the Jenkins slave session caching the environment variables to some degree.
On the Windows machines, the Jenkins slave program runs as a service as the System account.
For this user, the “home” directory seems to be C:\Windows\system32\config\systemprofile
.
You can “become” the system user to debug stuff by downloading pxexec
:
https://technet.microsoft.com/en-us/sysinternals/pxexec
Then you extract the zip, then open a command-prompt as administrator, and then run psexec -i -s cmd.exe
.
This is all pieced together from a couple of pages here:
http://blog.thomasvandoren.com/jenkins-windows-slave-with-git.html
and here:
https://answers.atlassian.com/questions/128324/where-is-the-home-directory-for-the-system-user
Every so often the router reboots. The mac machines usually don’t reconnect to Jenkins properly. Just manually reconnect them.