-
Notifications
You must be signed in to change notification settings - Fork 585
add case for mina-archive to receive docker suffix tag #17540
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
add case for mina-archive to receive docker suffix tag #17540
Conversation
!ci-build-me |
!ci-build-me |
!ci-nightly-me |
@@ -1282,7 +1282,10 @@ function verify(){ | |||
for network in "${__networks_arr[@]}"; do | |||
local __artifact_full_name | |||
__artifact_full_name=$(get_artifact_with_suffix $artifact $network) | |||
|
|||
|
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 replicated logic from daemon. Basically we glue network name and any possible suffix like instrumented. As a result we can get:
-berkeley
-berkleey-intstrumented
-lightnet
etc
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.
The second is a typo I imagine? :)
@@ -21,7 +21,7 @@ function export_base_image () { | |||
|
|||
function export_version () { | |||
case "${SERVICE}" in | |||
mina-daemon|mina-batch-txn|mina-rosetta|mina-daemon-hardfork) export VERSION="${VERSION}-${NETWORK##*=}" ;; | |||
mina-daemon|mina-archive|mina-batch-txn|mina-rosetta|mina-daemon-hardfork) export VERSION="${VERSION}-${NETWORK##*=}" ;; |
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.
Archive now get network suffix. The same as the other packages
!ci-nightly-me |
!ci-build-me |
!ci-bypass-changelog |
Patch up docker for mina-archive. It should receive network suffix as daemon