Conversation
Collaborator
Author
zppy rc3Release process notes: Step 1: testingcd ~/ez/zppy
git status
# branch fixes-for-rc3
# nothing to commit
git fetch upstream main
git checkout main
git reset --hard upstream/main
git log
# Last commit: Fixes for rc3 (#753)
# Good, matches https://github.com/E3SM-Project/zppy/commits/main
rm -rf build
lcrc_conda # Activate conda
conda clean --all --y
conda env create -f conda/dev.yml -n zppy-main-20251028
conda activate zppy-main-20251028
python -m pip install .
pytest tests/test_*.py
# 35 passed in 1.13sWe will do full integration testing during the Unified testing. Step 2: Bump versionsStep 2a: Confluence
Step 2b: zppy repocd ~/ez/zppy
git status
# Check for uncommitted changes
git fetch upstream main
git checkout -b v3.1.0rc3 upstream/main
tbump 3.1.0rc3 --no-tag
git log
# Last commit: Bump to 3.1.0rc3
# Creates commit, but doesn't push it (because branch isn't named `main`)
git push upstream v3.1.0rc3
# Follow example of https://github.com/E3SM-Project/zppy/pull/740, https://github.com/E3SM-Project/zppy/pull/750
# Create, add "Update version" label" to, and merge https://github.com/E3SM-Project/zppy/pull/754
git checkout main
git fetch upstream
git reset --hard upstream/main
git tag -a v3.1.0rc3 -m "v3.1.0rc3"
# Delete the branch from the tbump step. Otherwise, the push command won't work.
git branch -D v3.1.0rc3
git push upstream v3.1.0rc3
Step 2c: zppy-feedstock repocd ~/zppy-feedstock
curl -sL https://github.com/E3SM-Project/zppy/archive/v3.1.0rc3.tar.gz | openssl sha256
# SHA2-256(stdin)= b350bc2db8cf2fe0e6ea9ae5f7f96351eef116e1338d2948002fca01a62f9e3d
git status
# branch v3.1.0rc2
# nothing to commit
git fetch upstream dev
git checkout -b v3.1.0rc3 upstream/dev
emacs recipe/meta.yaml
# In `recipe/meta.yaml`, update the version and sha256 (and the build number if needed):
# {% set version = "3.1.0rc3" %}
# sha256: ... # The sha256 from the previous step
# number: 0 # build >>> number should always be 0
# Do we need to edit any dependencies?
# Visit https://github.com/E3SM-Project/zppy/compare/v3.1.0rc2...v3.1.0rc3
# There are no changes to conda/ or /.github directories
# So we don't need to change anything here
git add -A
git commit -m "v3.1.0rc3"
git push forsyth2 v3.1.0rc3
# Follow example of https://github.com/conda-forge/zppy-feedstock/pull/27, https://github.com/conda-forge/zppy-feedstock/pull/28
Created conda-forge/zppy-feedstock#29 New in this rcFor reference, this adds the following PRs on top of |
5 tasks
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bump to 3.1.0rc3