Samba on GitLab: Difference between revisions
(New info on CI tips and tricks) |
(more examples in Skipping the -O3 jobs) |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 98: | Line 98: | ||
It is often helpful to run the full testsuite and get a full list of failures to work though locally, rather than a slow fix/submit/fix-next cycle. To do this, use the `AUTOBUILD_FAIL_IMMEDIATELY=0` environment variable. |
It is often helpful to run the full testsuite and get a full list of failures to work though locally, rather than a slow fix/submit/fix-next cycle. To do this, use the `AUTOBUILD_FAIL_IMMEDIATELY=0` environment variable. |
||
git push -o ci.variable='AUTOBUILD_FAIL_IMMEDIATELY=0' gitlab-ci |
git push -o ci.variable='AUTOBUILD_FAIL_IMMEDIATELY=0' gitlab-ci |
||
== Skipping the -O3 jobs== |
|||
These jobs start 9 VMs but do not extend our testing by as much, so in intensive test/fix cycles you should consider setting: |
|||
git push -o ci.variable='AUTOBUILD_SKIP_SAMBA_O3=1' gitlab-ci |
|||
This can be combined with the above as: |
|||
git push -o ci.variable='AUTOBUILD_FAIL_IMMEDIATELY=0' -o ci.variable='AUTOBUILD_SKIP_SAMBA_O3=1' gitlab-ci |
|||
== Committing changes without running CI== |
|||
Sometimes you might just be pushing a documentation change or changing a commit message, in such cases you could choose not to consume CI resources. |
|||
git push -o ci.skip gitlab-ci |
|||
== Update container images == |
== Update container images == |
||
See [https://gitlab.com/samba-team/samba/-/blob/master/bootstrap/README.md bootstrap/README.md] for details on how to update the container images used by Docker in GitLab CI, say if you wish to depend on a new package or add/remove supported distributions. |
See [https://gitlab.com/samba-team/samba/-/blob/master/bootstrap/README.md bootstrap/README.md] for details on how to update the container images used by Docker in GitLab CI, say if you wish to depend on a new package or add/remove supported distributions. |
||
== Code coverage build == |
|||
To test the [[Code Coverage]] build run: |
|||
git push -o ci.variable='SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE=--enable-coverage' gitlab-ci |
|||
This is not quite the same as the environment for the [https://gitlab.com/samba-team/samba/-/pipeline_schedules scheduled pipelines] due to a different set of less powerful runners however, so if jobs fail this is not totally unexpected, but is still the best option to test changes to the code coverage build. |
|||
=CI for personal GitLab forks= |
=CI for personal GitLab forks= |
Latest revision as of 20:18, 13 October 2021
Samba has a GitLab mirror of the official git repository used to aid development
Where is Samba on GitLab?
- Samba's Official GibLab mirror is at https://gitlab.com/samba-team/samba
- The Samba shared CI repository is at https://gitlab.com/samba-team/devel/samba
Getting Access
Samba Team members
Samba Team members are encouraged to join the Samba Team organisation here:
Just ask on the team list from your team e-mail with your gitlab username.
A fellow team member with Maintainer rights can then add you as a Developer via this page:
Other Samba developers
Our broader developer community is encouraged to apply to use the Samba CI repo. Access is given to folks active on the mailing list with patches to submit, not just to Samba Team members.
Please write a mail to contributing@samba.org with your GitLab username, details of your contribution history or plans and a Samba Team member with Maintainer rights can then add you as a Developer via this page:
Triggering CI
The git remote URL for the Samba CI repo is
git@gitlab.com:samba-team/devel/samba.git
A CI run is triggered after every push. This makes it easy to find issues early.
Code of conduct
Please prefix branches with your gitlab username, and be nice. Use only to develop Samba. Don't overwrite the work of others.
$USER/topic
eg
frednurk/kerberos-timeout-handling
In return you get a full CI run using Samba Team provided resources running thanks to a credit in Rackspace's cloud. That in turn makes it easier for Samba Team members doing Code Review as your patches will work first time, and they can see proof of that.
If you describe your work in the branch name, this will make generating a merge request easier, as the branch name becomes the template title and allows ongoing distinct merge requests.
Step by step instructions
Here are the basics steps for Samba team members (and others who have been granted access) to start from scratch.
Add a git reference to the gitlab remote repository:
$ git remote add gitlab-ci git@gitlab.com:samba-team/devel/samba.git
Push current HEAD to a new remote branch called '$USER-foo' on gitlab CI:
$ echo $USER slow $ git push gitlab-ci +HEAD:refs/heads/$USER-foo
See the Code of Conduct for an explanation of the usage of the username from the USER environment variable. Note that if your gitlab username is different to the username on the local system, the '$USER' name you need to use in the git commands when pushing to gitlab is your gitlab username, not your local username.
Push HEAD to an existing remote branch called '$USER-foo' on gitlab CI:
$ git push gitlab-ci +HEAD:$USER-foo
CI Results
- CI results for changes are here: Pipelines
- merge requests show a link to the Pipeline (CI) results for each patch series.
Debugging CI failures
Please see these sub-pages for details on how to debug failures shows up by GitLab CI:
Where and how does CI run
We use a combination of Cloud VMs and GitLab.com shared runners to provide the CI.
Special cases and tricks
Running a full autobuild without an early stop
It is often helpful to run the full testsuite and get a full list of failures to work though locally, rather than a slow fix/submit/fix-next cycle. To do this, use the `AUTOBUILD_FAIL_IMMEDIATELY=0` environment variable.
git push -o ci.variable='AUTOBUILD_FAIL_IMMEDIATELY=0' gitlab-ci
Skipping the -O3 jobs
These jobs start 9 VMs but do not extend our testing by as much, so in intensive test/fix cycles you should consider setting:
git push -o ci.variable='AUTOBUILD_SKIP_SAMBA_O3=1' gitlab-ci
This can be combined with the above as:
git push -o ci.variable='AUTOBUILD_FAIL_IMMEDIATELY=0' -o ci.variable='AUTOBUILD_SKIP_SAMBA_O3=1' gitlab-ci
Committing changes without running CI
Sometimes you might just be pushing a documentation change or changing a commit message, in such cases you could choose not to consume CI resources.
git push -o ci.skip gitlab-ci
Update container images
See bootstrap/README.md for details on how to update the container images used by Docker in GitLab CI, say if you wish to depend on a new package or add/remove supported distributions.
Code coverage build
To test the Code Coverage build run:
git push -o ci.variable='SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE=--enable-coverage' gitlab-ci
This is not quite the same as the environment for the scheduled pipelines due to a different set of less powerful runners however, so if jobs fail this is not totally unexpected, but is still the best option to test changes to the code coverage build.
CI for personal GitLab forks
Instructions how to run CI with your own GitLab runner can be found here: CI using Your own gitlab runner.
This is helpful if you do not wish to share the repository with others (you have your own fork on gitlab). However it requires your own build resources.
Free CI for forks on gitlab.com
By default a CI pipeline will run for any push to a gitlab.com fork of Samba. Much of the testsuite runs, but not everything, which is why we have the special shared development repository.
1 hour Timeout
You may see errors like this:
ERROR: Job failed: execution took longer than 1h0m0s seconds
The script exceeded the maximum execution time set for the job
By default projects on gitlab.com have a 1 hour timeout set on pipelines. This can be changed in the project settings.
We suggest using a timeout of 3 hours, which is still permitted on the free runners.
Creating a merge request
- If you are using your own private (forked) repository, then see our instructions on creating your first merge request.
- If you pushed your patch to a unique well-named branch (above) in our shared development repo, then it is really easy to submit the change for inclusion in Samba.
When you pushed your branch, a link will have been printed to create a merge request. Click that. If no link is printed it may be due to a complex ssh configuration issue. Don't panic, you can still create a merge request using the following section.
To do it later, navigate to your branch on gitlab, eg
https://gitlab.com/samba-team/devel/samba/commits/$USER/foo and click 'Create Merge Request'.
This will trigger an e-mail to Samba developers registered on GitLab suggesting that your code should be merged. You may wish to also mail the patch or merge request URL to samba-technical for additional attention.
Further pushes to the same branch will then update the merge request, start a fresh CI run and re-send notifications, so the current code and test status is always available.
For this reason choose a unique branch name per patch series, and do not reuse the branch name until the merge request has been closed.
Ensuring the correct target project is selected
Sometimes, for reasons that are not obvious, GitLab will offer to create the merge request against the (incorrect) samba-team/devel/samba
repository. In this case the description field will say:
# Merge requests should be against https://gitlab.com/samba-team/samba/ NOT this development repository.
This can be worked around by clicking on the Change branches link near the top of the page and selecting samba-team/samba
as the Target project for the Target branch - searching for samba-team/
narrows down the list of projects substantially.
Responding to feedback and updating the patch
To update the patch in gitlab, simply re-push the branch with -f to force it to be overwritten:
git push gitlab-ci +HEAD:$USER/foo -f
Merging patches from GitLab (for Samba Team members)
If the developer has created a merge request, then to merge, download the patch with (eg)
https://gitlab.com/samba-team/samba/merge_requests/12.patch
Add review tags and then 'git autobuild' locally. The merge button sadly doesn't work.
Then when the patch is in Samba.org's git master close the merge request with a message like:
Merged into master as <git hash> for Samba <next version>.
See for example this closed merge request.
Getting help
If something isn't working, or you need help, the first port of call should be the samba-technical mailing list.
gitlab.com Service Status
- gitlab.com service issues and outages are tracked on Twitter at GitLab Status
- The current status is at GitLab status
GitLab Support
- GitLab forum
- GitLab.com Support Forum Tracker
- Contact GitLab for issues like account access problems
Don't panic
Finally, in the immortal words of Douglas Adams: Don't Panic
As a toolchain, git is a decentralised version control system. While a service outage would certainly be inconvenient, development work can continue locally through an outage.