-
Notifications
You must be signed in to change notification settings - Fork 981
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
feat(release): Also bundle dragonfly-debug builds #2424
Conversation
This mostly works but somehow the regression tests keep failing: https://github.com/dragonflydb/dragonfly/actions/runs/7593673964/job/20684393614 @romange Any idea? |
711064f
to
8ff121b
Compare
8ff121b
to
48e9d8b
Compare
We seem to get the debug binaries with this change: https://github.com/dragonflydb/dragonfly/actions/runs/7863662234 (Now, Remving all the changes for testing) |
Makefile
Outdated
@@ -38,6 +38,7 @@ build: | |||
|
|||
package: | |||
cd $(RELEASE_DIR); \ | |||
tar cvfz $(RELEASE_NAME)-debug.tar.gz dragonfly ../LICENSE.md; \ |
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.
This is the actual change. Essentially we are storing a -debug.tar.gz wih the dragonfly binary before its stripped of symbols and then expect the release pipeline to also publish these files.
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.
Why there is a whitespace change? Can you please remove unnecessary changes?
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.
Sure! Linter did its thing!
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.
Fixed!
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.
ok, just to make sure the naming is not misleading, I suggest that we call it $(RELEASE_NAME)-dbgsym.tgz
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!
1923fc9
to
59a47da
Compare
No description provided.