-
Notifications
You must be signed in to change notification settings - Fork 490
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
Package pipeline #1629
Package pipeline #1629
Conversation
We don't really need to hold onto those between stages
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.
Looks good. I tested this pipeline using the 2.2.0 release branch.
@@ -44,19 +49,21 @@ tasks: | |||
jobs: | |||
package: | |||
tasks: | |||
- docker.Make.build |
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 does packaging rebuild?
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.
I think the plan right now is to use the build artifacts produced by this pipeline rather than what travis uploads. That way we're only using travis to ensure that tests are passing.
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.
Looks good.
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.
Had some questions
Makefile
Outdated
PATH=$(SRCPATH)/tmp/node_pkgs/$(OS_TYPE)/$(ARCH)/bin:$${PATH} \ | ||
scripts/upload_version.sh $(CHANNEL) $(SRCPATH)/tmp/node_pkgs $(S3_RELEASE_BUCKET) | ||
FULLBUILDNUMBER=$(FULLBUILDNUMBER) \ | ||
aws s3 cp tmp/node_pkgs s3://algorand-internal/channel/${CHANNEL}/${FULLBUILDNUMBER} --recursive --exclude "*" --include "*${CHANNEL}*${FULLBUILDNUMBER}*" |
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.
Interesting, just to be clear here, this is uploading to algorand-internal, not algorand-staging, and will do so to a subdirectory based on the buildnumber? That should be fine, because it won't overlap with Travis's build artifacts if that's the case (uploads to the root of that dir).
Summary
Implement mule packaging pipeline
Test Plan
This pipeline builds algorand, creates deb/rpm packages and uploads them to algorand-internal