# The release workflow The release workflow recommended by the ODK is based on GitHub releases and works as follows: 1. Run a release with the ODK 2. Review the release 3. Merge to main branch 4. Create a GitHub release These steps are outlined in detail in the following. ## Run a release with the ODK Preparation: 1. Ensure that all your pull requests are merged into your main (master) branch 2. Make sure that all changes to main are committed to Github (`git status` should say that there are no modified files) 3. Locally make sure you have the latest changes from main (`git pull`) 4. Checkout a new branch (e.g. `git checkout -b release-2021-01-01`) 5. You may or may not want to refresh your imports as part of your release strategy (see [here](UpdateImports.md)) 6. Make sure you have the latest ODK installed by running `docker pull obolibrary/odkfull` To actually run the release, you: 1. Open a command line terminal window and navigate to the src/ontology directory (`cd aeon/src/ontology`) 2. Run release pipeline:`sh run.sh make prepare_release -B`. Note that for some ontologies, this process can take up to 90 minutes - especially if there are large ontologies you depend on, like PRO or CHEBI. 3. If everything went well, you should see the following output on your machine: `Release files are now in ../.. - now you should commit, push and make a release on your git hosting site such as GitHub or GitLab`. This will create all the specified release targets (OBO, OWL, JSON, and the variants, ont-full and ont-base) and copy them into your release directory (the top level of your repo). ## Review the release 1. (Optional) Rough check. This step is frequently skipped, but for the more paranoid among us (like the author of this doc), this is a 3 minute additional effort for some peace of mind. Open the main release (aeon.owl) in you favourite development environment (i.e. Protege) and eyeball the hierarchy. We recommend two simple checks: 1. Does the very top level of the hierarchy look ok? This means that all new terms have been imported/updated correctly. 2. Does at least one change that you know should be in this release appear? For example, a new class. This means that the release was actually based on the recent edit file. 2. Commit your changes to the branch and make a pull request 3. In your GitHub pull request, review the following three files in detail (based on our experience): 1. `aeon.obo` - this reflects a useful subset of the whole ontology (everything that can be covered by OBO format). OBO format has that speaking for it: it is very easy to review! 2. `aeon-base.owl` - this reflects the asserted axioms in your ontology that you have actually edited. 3. Ideally also take a look at `aeon-full.owl`, which may reveal interesting new inferences you did not know about. Note that the diff of this file is sometimes quite large. 4. Like with every pull request, we recommend to always employ a second set of eyes when reviewing a PR! ## Merge the main branch Once your [CI checks](ContinuousIntegration.md) have passed, and your reviews are completed, you can now merge the branch into your main branch (don't forget to delete the branch afterwards - a big button will appear after the merge is finished). ## Create a GitHub release 1. Go to your releases page on GitHub by navigating to your repository, and then clicking on releases (usually on the right, for example: https://github.com/tibonto/aeon/releases. Then click "Draft new release" 1. As the tag version you **need to choose the date on which your ontologies were build.** You can find this, for example, by looking at the `aeon.obo` file and check the `data-version:` property. The date needs to be prefixed with a `v`, so, for example `v2020-02-06`. 1. You can write whatever you want in the release title, but we typically write the date again. The description underneath should contain a concise list of changes or term additions. 1. Click "Publish release". Done. ## Debugging typical ontology release problems ### Problems with memory When you are dealing with large ontologies, you need a lot of memory. When you see error messages relating to large ontologies such as CHEBI, PRO, NCBITAXON, or Uberon, you should think of memory first, see [here](https://github.com/INCATools/ontology-development-kit/blob/master/docs/DealWithLargeOntologies.md). ### Problems when using OBO format based tools Sometimes you will get cryptic error messages when using legacy tools using OBO format, such as the ontology release tool (OORT), which is also available as part of the ODK docker container. In these cases, you need to track down what axiom or annotation actually caused the breakdown. In our experience (in about 60% of the cases) the problem lies with duplicate annotations (`def`, `comment`) which are illegal in OBO. Here is an example recipe of how to deal with such a problem: 1. If you get a message like `make: *** [cl.Makefile:84: oort] Error 255` you might have a OORT error. 2. To debug this, in your terminal enter `sh run.sh make IMP=false PAT=false oort -B` (assuming you are already in the ontology folder in your directory) 3. This should show you where the error is in the log (eg multiple different definitions) WARNING: THE FIX BELOW IS NOT IDEAL, YOU SHOULD ALWAYS TRY TO FIX UPSTREAM IF POSSIBLE 4. Open `aeon-edit.owl` in Protege and find the offending term and delete all offending issue (e.g. delete ALL definition, if the problem was "multiple def tags not allowed") and save. *While this is not idea, as it will remove all definitions from that term, it will be added back again when the term is fixed in the ontology it was imported from and added back in. 5. Rerun `sh run.sh make IMP=false PAT=false oort -B` and if it all passes, commit your changes to a branch and make a pull request as usual.