Conversation
Collaborator
Author
|
Release process notes: Step 1: testingThe fixes of rc8 were tested in that PR. More complete testing will be done by testing this RC, Step 2: Bump versionsStep 2a: ConfluenceAlready updated https://e3sm.atlassian.net/wiki/spaces/DOC/pages/129732419/Packages+in+the+E3SM+Unified+conda+environment, in #813 Step 2b: zppy repocd ~/ez/zppy
git status # Check for uncommitted changes
git fetch upstream main
git checkout -b v3.2.0rc2 upstream/main
nersc_conda # Activate conda env
conda activate zppy-fixes-of-rc8-20260505 # Just activate some zppy dev env so we have tbump
tbump 3.2.0rc2 --no-tag
# Creates commit, but doesn't push it (because branch isn't named `main`)
git diff HEAD^ HEAD | cat
# Yes, these match up with changes in https://github.com/E3SM-Project/zppy/pull/813
git push upstream v3.2.0rc2
# Create, and "Update version" label" to, and merge https://github.com/E3SM-Project/zppy/pull/816, delete branch on GitHub
git checkout main
git fetch upstream
git reset --hard upstream/main
git tag -a v3.2.0rc2 -m "v3.2.0rc2"
# Delete the branch from the tbump step. Otherwise, the push command won't work.
git branch -D v3.2.0rc2
git push upstream v3.2.0rc2
Step 2c: zppy-feedstock repocd ~/zppy-feedstock
curl -sL https://github.com/E3SM-Project/zppy/archive/v3.2.0rc2.tar.gz | openssl sha256
# SHA2-256(stdin)= 62e97ab6512bc7407f5810c6c595f320758e03a9ad01ca6ee24f7065fef07248
git status # Check for uncommitted changes
git fetch upstream dev
git checkout -b v3.2.0rc2 upstream/dev
emacs recipe/recipe.yaml
# Update the version and sha256 (and the build number if needed):
# version: 3.2.0rc2
# sha256: ... # The sha256 from the previous step
# number: 0 # build >>> number should always be 0
# Check https://github.com/E3SM-Project/zppy/compare/v3.2.0rc1...v3.2.0rc2
# If there are changes in dependencies there (e.g., in a `dev.yml`),
# You'll want to include them in this feedstock PR too.
# No relevant changes to add.
git add -A
git commit -m "v3.2.0rc2"
git push forsyth2 v3.2.0rc2Created conda-forge/zppy-feedstock#37 |
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.2.0rc2