Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
arbor
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Analyze
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
arbor-sim
arbor
Commits
4dd63270
Unverified
Commit
4dd63270
authored
3 years ago
by
Brent Huisman
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add Release procedure to docs (#1738)
parent
e2ecd6ad
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/contrib/release.rst
+101
-0
101 additions, 0 deletions
doc/contrib/release.rst
doc/index.rst
+1
-0
1 addition, 0 deletions
doc/index.rst
with
102 additions
and
0 deletions
doc/contrib/release.rst
0 → 100644
+
101
−
0
View file @
4dd63270
Release Process
===============
These notes enumerate the steps required every time we release a new
version of Arbor.
Pre-release
-----------
Update tags/versions and test
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1. Create new temp-branch ending in ``-rc``. E.g. ``v0.5.1-rc``
2. Bump the ``VERSION`` file:
https://github.com/arbor-sim/arbor/blob/master/VERSION
3. Update Python/pip/PyPi metadata and scripts
- Update MANIFEST (required for PyPi step later):
https://github.com/arbor-sim/arbor/blob/master/MANIFEST.in
- also checkout ``setup.cfg`` and ``setup.py``
4. Double check all examples/tutorials/etc not covered by CI
Manual test (deprecated)
~~~~~~~~~~~~~~~~~~~~~~~~
5. python setup.py sdist
6. python -m venv env
7. source env/bin/activate
8. move tarball here and extract
9. pip install –upgrade pip
10. pip install numpy
11. pip install ./arbor-0.5.1 –verbose
12. python -c ’import arbor; print(arbor.__config__)’
13. twine upload -r testpypi dist/\* (have some testrepo)
14. create *another* venv: python -m venv env && source env/bin/activate
15. pip install numpy
16. pip install -i https://test.pypi.org/simple/ arbor==0.5.1 –verbose
17. python -c ’import arbor; print(arbor.__config__)’
Ciwheel/automated test (replaces manual test)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5. Create/overwrite ``ciwheel`` branch with the above branch, and push
to Github.
6. Collect artifact from GA run.
7. twine upload -r testpypi dist/\*
8. Ask users to test the above, e.g.:
.. code-block:: bash
python -m venv env && source env/bin/activate
pip install numpy pip install -i https://test.pypi.org/simple/ arbor==0.5.1
python -c ’import arbor; print(arbor.__config__)’
Release
-------
0. Make sure ciwheel passes tests, produced working wheels. Make sure
tests on master also passed, and master == ciwheel
1. Tag and release: https://github.com/arbor-sim/arbor/releases
- on cmdline: git tag -a TAGNAME
- git push origin TAGNAME
- Go to `GH tags`_ and click “…” and “Create release”
- Go through merged PRs to come up with a changelog
2. Create tarball with
``scripts/create_tarball ~/loc/of/arbor tagname outputfile``
- eg ``scripts/create_tarball /full/path/to/arbor v0.5.1 ~/arbor-v0.5.1-full.tar.gz``
3. [`AUTOMATED`_] push to git@gitlab.ebrains.eu:arbor-sim/arbor.git
4. Download output of wheel action and extract (verify the wheels and
source targz is in /dist)
5. Verify wheel
- create venv: python -m venv env && source env/bin/activate
- pip install arbor-0.5.1-cp39-cp39-manylinux2014_x86_64.whl
- python -c ’import arbor; print(arbor.__config__)’
6. Upload to pypi
- twine upload -r arborpypi dist/\*
7. Verify
- create venv: python -m venv env && source env/bin/activate
- pip install arbor==0.5.1 –verbose
- python -c ’import arbor; print(arbor.__config__)’
Post release
------------
1. Update spack package
- first, update ``spack/package.py``. The checksum of the targz is the sha256sum.
- Then, use the file to `make PR here <https://github.com/spack/spack/blob/develop/var/spack/repos/builtin/packages/>`_
.. _GH tags: https://github.com/arbor-sim/arbor/tags
.. _AUTOMATED: https://github.com/arbor-sim/arbor/blob/master/.github/workflows/ebrains.yml
This diff is collapsed.
Click to expand it.
doc/index.rst
+
1
−
0
View file @
4dd63270
...
...
@@ -165,6 +165,7 @@ A full list of our software attributions can be found `here <https://github.com/
contrib/doc
contrib/example
contrib/test
contrib/release
.. meta::
:google-site-verification: KbkW8d9MLsBFZz8Ry0tfcQRkHsgxzkECCahcyRSjWDo
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment