This page contains information about the software review process in ATLAS. It describes the tasks of merge request review shifters and provides some guidance as well as hints for common situations/problems. It is assumed that you are familiar with the general workflow for ATLAS software development as summarised in the Workflow Quick Reference. Furthermore, a solid knowledge of the C++ and Python programming language is mandatory. An overview of the ATLAS coding conventions and style guidelines is desirable.
For every working day, there are two level-1 and two level-2 shifters on shift. Ideally, they work in different time zones (e.g. CERN and US) to provide developers from all timezones with a timely review of their merge requests. Please note that the shift times indicated in the OTP system are CERN times and may deviate from the actual shift times.
The current shift crew can be found on the OTP S&C Shift Crew page.
As a level-1 shifter you are expected to have a thorough understanding of the C++ language and some basic knowledge about Python. You should be able to check the formal code requirements listed below as well as the criteria for good documentation and the adherence to the ATLAS coding conventions and style guidelines.
If you feel confident about reviewing the changes go ahead. If the changes are more
substantial and require a deeper understanding of the Athena code
structure/workflows, you can escalate this MR to the level-2 shifter for
review (but please make sure you explain why, i.e. write ‘Escalating to L2, because I’m not sure whether there is a memory leak in the bar()
method of Foo.cxx
’ or ‘Escalating to L2 because Foo.cxx
has been completely re-written.’) If you are in doubt, you can always pass a MR on to the next level, but try to guide the next shifter to save them from re-reading everything.
In addition to the knowledge required by the level-1 shifts, you have some experience with the usage and design of the Athena software and are able to comment on structural changes. A certain level of proficiency in git is helpful as well.
Your main task is the review of MRs which were escalated to level-2 by the
level-1 shifters. In case that these changes require dedicated expertise in a
specific software domain, you could always include an expert in the discussion
(using the @username
mentioning feature in GitLab, see the FAQ for a
list of contact persons). Otherwise, you are expected to approve the MR or
iterate with the developer on the proposed changes.
Your task as review shifter is to review the proposed changes to the ATLAS software and, if necessary, iterate with the developer(s) until these changes fulfil certain criteria outlined below. The outcome of the review process is the recommendation for the release coordinators to accept this merge request (or not). It is up to the release coordinators to finally accept or reject a merge request.
Upon creation merge requests are labelled automatically by the CI system. The labels relevant for the review process are:
For MRs that affect packages in the analysis releases there is an extra set of labels that are relevant for the analysis release shifter:
Once you are done with your part of the review process you update the review label as appropriate. In case further changes are required (not approved), add a comment with your findings. In case of approval without further comments, changing the label is sufficient.
The regular and analysis-specific review are independent and can proceed in parallel. The release coordinator will ensure full approval before merging where necessary.
GitLab has its own approval mechanism, which we are not using in our standard review workflow. Therefore you do not need to click the “Approve” button at the top of the MR.
Merge requests that change the output of the reconstruction are flagged by the CI system with a dedicated label and the CI will be marked as failed.
Depending on which output changed, take the following actions:
For both cases, you can proceed with your usual code review before, or in parallel with, the reference file updates, but the final review-approved label should only be applied once the CI passes.
Sweeps are merge requests that merge changes from one release branch to another (e.g. 24.0
to main
). There are two types of sweeps:
As the code changes have already been reviewed when merged into the original branch, not further code
review is required. If the CI succeeds, you can immediately approve the MR. In case of failure, apply the
review-user-action-required
label and in case of an automatic sweep, tag the author of the original MR that is listed in the description of the sweep MR.
Last updated
).
Updated date
sorting as pre-defined in the links give here).CI
label to the issue it will appear in the status board.The review should encompass criteria from the following four categories, ordered by importance:
but should also address some general points. After the review and possible iterations with the developer, please make sure that all discussions are marked as resolved before approving a merge request.
Does the code compile with any error or warnings? A successful build is indicated by this line in the CI result:
✅ Athena: number of compilation errors 0, warnings 0
whereas a problematic build that needs follow-up is marked with a warning sign:
⚠️Athena: number of compilation errors 0, warnings 8
For a MR to be approved there should be zero compilation errors and warnings. In case the warnings are unrelated to the changes in the MR (see the build logs) they can be ignored.
Do all unit tests still succeed? If not, check the CI Status Board for known failures.
Draft
and
request it only once it is final (i.e. it builds locally and has been tested).new
!
make_unique()
or
make_shared()
)unique_ptr
where appropriate!std::abs(some_value > 2)
!std::cout/cerr
- use the Athena logging service through the
message macros. Unit tests are exempt from this rule.CMakeLists.txt
files (e.g. custom code
using more than simple set(...)
or atlas_<foo>(...)
functions) please notify
Attila (@akraszna
) as a watcher.C++
, but also to python
, bash
etc.Δϕ
instead of deltaPhi
, or μ
instead of muon
, or to correctly write someone’s name).Functional code is important and so is maintainability. Therefore, please check that:
/*
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
*/
Changes
tab) have this copyright statement! Trivial job option fragments and boilerplate files
are exempt from this rule, usually found in share
or in src/components
.If the merge request is otherwise fine please don’t bother updating the copyright, which would trigger another CI run.
Sticking to the ATLAS guidelines for software development helps other people to understand your code better and faster and, thus, facilitates maintainability. As such, the following points should be mentioned as minor suggestions. Since these guidelines have not been followed too closely in the past, you will see a lot of code which could be improved. Some of it may not even been touched by the actual changes. This is a delicate topic and some developers may react huffish to these kind of comments. Therefore, the general strategy is to aim for gradual improvement than drastic changes:
ChangeLog
files (no nay never)How should developers update their merge request?
If developers would like to update their code changes (either based on feedback
from the review shifters or for any other reason), they can simply add further
commits to the source branch. The MR will be updated automatically. Since a new
CI job is run on every update of the source branch, developers are encouraged to
push only working sets of commits instead of pushing each commit
individually. This helps reducing the load on the CI system and therefore gives
the developers faster turn-around times.
If developers want to update only the MR title, description or labels, this can
all be done directly from the GitLab MR page using the Edit
button in the
top-right corner.
How do developers notify review shifters after they responded to comments?
If a MR as been flagged as review-user-action-required
, developers should
answer and address the questions raised by the review shifters. In case they
updated the source branch, a new CI job will reset the review label to
review-pending-level-1
automatically. In the event that no code changes were
required, developers should manually change the label back to
review-pending-level-1/2
(whatever they think is appropriate).
Who should resolve discussions?
Before a MR is approved, all discussions should be marked as resolved. In
general, a discussion should be resolved by the initiator (which usually is the
review shifter). If developers agree with a comment and they have implemented
the requested change in an update of the MR, they should briefly state in
the discussion that this suggestion was implemented and resolve this discussion
directly.
How can I access atlas-sit-ci.cern.ch:8080
remotely?
The Jenkins server is running at the above address which is only reachable from
inside the CERN firewall due to security restrictions for our build machines. In
order to access this machine which provides access to all the detailed Jenkins
log files, you need use port forwarding or SSH tunneling (see here for instructions).
Jenkins please retry a build
git checkout + git merge
) can be accessed from the navigation menu on
the left under Console Output
. In order to restart (or cancel) a CI job you need
to login with you CERN account using the login button in the top-right corner of
the screen. After a successful login, the navigation menu on the left should show
a Rebuild
button. If that is not the case, your account needs to be added to the
relevant Jenkins group as described above.Where are the per-package build log files?
Once the CI job is finished ATLAS robot publishes a summary comment on the
GitLab MR discussion page which contains a link to NICOS. On this page you can
access the log files for the git checkout + git merge
operation, the cmake
configuration and the build of the externals by clicking on the three icons in
the Build time, checkout, conf, inst column. The column #PB
also gives a summary about the number of failed packages and packages which had
warnings (in parentheses). Clicking on these numbers gets you to a page which
lists the build logfiles for each individual package where the colors indicate
the severity of compiler warnings/errors.
Are Draft
/WIP
merge requests processed by the CI system?
No, merge requests marked as Draft
are not processed by the CI system. But the
CI can be triggered manually as described in FAQ 5. However, once the CI finishes
the system will not add a review label
(as of ATLINFR-2754) since the
Draft
status indicates that the change is not yet ready for review.
Which expert to contact?
The CI system should automatically tag relevant experts using an expert watch list.
If no one is listed as a watcher (or if this list seems out of date), please
contact someone from the relevant software domain to fix it.
A list of contacts for various software domains (and CP groups) can be found
here. Make
sure that you mentioned the expert in the GitLab using the @username
notation.
Why is the pipeline status for a merge request not displayed?
Make sure that atlasbot
was added as a developer to the source fork as
described
here. In case you
spot a MR where the source repository is lacking atlasbot
as a member, you
should make a comment like to the one below
Hi @<username>, please add `atlasbot` as a developer to your fork as described
[here](https://atlassoftwaredocs.web.cern.ch/athena_git/gitlab-fork/) so that
the CI pipeline status is displayed correctly for future MRs.
Thanks.
What is a reasonable number of changed files in one MR?
This question is hard to answer in general. Replacing endreq
by endmsg
in
the whole code base would be a valid MR touching thousands of files. It is not
the number of changes (or modified files) which should be important but rather
whether those changes are all logically related. The goal is that each MR
addresses one issue (e.g. one JIRA ticket) and does not contain multiple
unrelated updates. If this requires changes to many files, it does not mean it
is a bad request. You may as well see it from a different perspective: A merge
request is the smallest entity on release level which can be undone easily in
case there is a problem. So if a merge request contains multiple changes where
there is the hypothetical possibility that you only want to undo certain parts
if a bug is discovered, it is better to split the merge request.
Please feel free to contact the ATLAS git team if you have any suggestions on the documentation material, open an issue or improve it yourself by following our contribution guide. For problems with the CI system open a ticket in ATLINFR.