-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some new thoughts on cutting a release, especially scripts/release.sh #309
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
3dd1c9c
Some new thoughts on cutting a release, especially scripts/release.sh
daw3rd 04fb1dc
Minor updates to release.sh script
daw3rd 98a41b5
Update repo.md for 2 make users and add workflow test of global make …
daw3rd 2d006a5
Update release.sh script for testing
daw3rd cc6b3aa
more testing or release.sh script
daw3rd 4fc4f9c
More release.sh
daw3rd 8de2c49
Revert to dev versions
daw3rd e49cbaa
release.sh
daw3rd db921b9
release.sh
daw3rd 1451277
release.sh
daw3rd c276b71
release.sh
daw3rd a026584
release.sh
daw3rd 4b6f41b
release.sh
daw3rd 15317ef
release.sh
daw3rd 7d5ca76
updated repo.md on makefiles
daw3rd 679d637
Merge branch 'dev' into releasing
daw3rd c85c68a
add publish target to superworkflows Makefile
daw3rd 2a7bcb9
More release work
daw3rd 12f315b
add publish target to kind/Makefile
daw3rd 6c0d4ab
install ../python for spark transforms in .make.defaults
daw3rd f6bd444
fix kfp set versions, and noop versions
daw3rd 103f559
Fix versioning in .make* and typo in noop/ray/pyproject.tmo
daw3rd 7b3be84
Merge branch 'dev' into releasing
daw3rd 7f7a264
comments and dont created empty pyproject.toml in .make.defaults
daw3rd 52e4eb7
update release.sh to apply final version changes
daw3rd 6211b50
Version updates, version setting fixes, noop spark Dockerfile,
daw3rd af8ce1c
Merge branch 'dev' into releasing
daw3rd 51fe74c
set-versions inputcode2parquet'
daw3rd 3db00f7
restore INGEST_TO_PARQUET_VERSION removed in recent commit"
daw3rd caa42b4
updated repo.md to point to include link to transform conventions
daw3rd b43683f
fix transform link added to repo.md in last commit
daw3rd fcc6136
Merge branch 'dev' into releasing
daw3rd 67d3357
fixed code2parquet versions from last merge and uninstall libs in bet…
daw3rd 37a24d0
Merge branch 'dev' into releasing
daw3rd 40ccc4c
remove redundant pip uninstall in .make.defaults
daw3rd 0123b7e
Fix transform version settings when python transform code is referenced
daw3rd 87a7549
.make.versions changes - remove redancy and unused macros, and define…
daw3rd File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
DEFAULT_BRANCH=dev | ||
# Assume this file is in the reporoot/scripts directory | ||
reporoot=$(dirname $0)/.. | ||
cd $reporoot | ||
|
||
# Make sure we're starting from the base branch | ||
# git checkout $DEFAULT_BRANCH | ||
|
||
# Get the currently defined version w/o any suffix. This is the next release version | ||
# version=$(make DPK_VERSION_SUFFIX= show-version) | ||
# tag=v$version | ||
|
||
# Create a new branch for this version and switch to it | ||
# git branch -r release/$tag | ||
|
||
# Remove the release suffix in this branch | ||
# cat .make.versions | sed -e 's/^DPK_VERSION_SUFFIX.*/DPK_VERSION_SUFFIX=/' > tt | ||
# mv tt .make.version | ||
|
||
# Apply the unsuffixed version to the repo and check it into this release branch | ||
# make set-versions | ||
# git add -A | ||
# git commit -s -m "Cut release $version" | ||
# git push origin | ||
# git tag -a -s -m "Cut release $version" $tag | ||
# git push origin $tag | ||
|
||
# Now build with the updated version | ||
# make build publish | ||
|
||
# Now go back to the default branch so we can bump the minor version number and reset the version suffix | ||
# git branch $DEFAULT_BRANCH | ||
|
||
# Change to the next development version (bumped minor version with suffix). | ||
minor=$(cat .make.versions | grep '^DPK_MINOR_VERSION=' | sed -e 's/DPK_MINOR_VERSION=\([0-9]*\).*/\1/') | ||
minor=$(($minor + 1)) | ||
#cat .make.versions | sed -e "s/^DPK_MINOR_VERSION=.*/DPK_MINOR_VERSION=$minor/" \ | ||
# -e "s/^DPK_VERSION_SUFFIX=.*/DPK_VERSION_SUFFIX=.dev0/" > tt | ||
#mv tt .make.versions | ||
|
||
# Push the version change back to the origin | ||
# git add -A | ||
# git commit -s -m "Bump minor version to $minor after cutting release $version" | ||
# git push origin |
This file contains 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please rebase, this should be fixed now in dev branch. thanks
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done