Skip to content
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

Fix nightly + Port Promotion entrypoint fix #16103

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buildkite/scripts/run_promote_build_job.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,4 +112,4 @@ if [[ "${REMOVE_PROFILE_FROM_NAME}" -eq 0 ]]; then
else
REMOVE_PROFILE_FROM_NAME="True"
fi
echo $PROMOTE_PACKAGE_DHALL_DEF'.promote_artifacts '"$DHALL_DEBIANS"' '"$DHALL_DOCKERS"' "'"${FROM_VERSION}"'" "'"${NEW_VERSION}"'" "amd64" '$PROFILES_DHALL_DEF'.Type.'"${PROFILE}"' '$NETWORK_DHALL_DEF'.Type.'"${NETWORK}"' '"${DHALL_CODENAMES}"' '$DEBIAN_CHANNEL_DHALL_DEF'.Type.'"${FROM_CHANNEL}"' '$DEBIAN_CHANNEL_DHALL_DEF'.Type.'"${TO_CHANNEL}"' "'"${TAG}"'" '${REMOVE_PROFILE_FROM_NAME}' '${DHALL_PUBLISH}' ' | dhall-to-yaml --quoted
echo $PROMOTE_PACKAGE_DHALL_DEF'.promote_artifacts '"$DHALL_DEBIANS"' '"$DHALL_DOCKERS"' "'"${FROM_VERSION}"'" "'"${NEW_VERSION}"'" "amd64" '$PROFILES_DHALL_DEF'.Type.'"${PROFILE}"' '$NETWORK_DHALL_DEF'.Type.'"${NETWORK}"' '"${DHALL_CODENAMES}"' '$DEBIAN_CHANNEL_DHALL_DEF'.Type.'"${FROM_CHANNEL}"' '$DEBIAN_CHANNEL_DHALL_DEF'.Type.'"${TO_CHANNEL}"' "'"${NEW_VERSION}"'" '${REMOVE_PROFILE_FROM_NAME}' '${DHALL_PUBLISH}' ' | dhall-to-yaml --quoted
8 changes: 4 additions & 4 deletions buildkite/src/Command/Promotion/PromoteDebian.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ let promoteDebianStep =
, "AWS_SECRET_ACCESS_KEY"
, "FROM_VERSION_MANUAL"
]
". ./buildkite/scripts/export-git-env-vars.sh && ./buildkite/scripts/promote-deb.sh --package ${package_name} --version ${spec.version} --new-version ${spec.new_version} --architecture ${spec.architecture} --codename ${DebianVersions.lowerName
spec.codename} --from-component ${DebianChannel.lowerName
spec.from_channel} --to-component ${DebianChannel.lowerName
spec.to_channel} ${new_name}"
". ./buildkite/scripts/export-git-env-vars.sh && ./buildkite/scripts/debian/promote.sh --package ${package_name} --version ${spec.version} --new-version ${spec.new_version} --architecture ${spec.architecture} --codename ${DebianVersions.lowerName
spec.codename} --from-component ${DebianChannel.lowerName
spec.from_channel} --to-component ${DebianChannel.lowerName
spec.to_channel} ${new_name}"
, label = "Debian: ${spec.step_key}"
, key = spec.step_key
, target = Size.Small
Expand Down
3 changes: 2 additions & 1 deletion src/app/archive/lib/processor.ml
Original file line number Diff line number Diff line change
Expand Up @@ -4737,7 +4737,8 @@ let add_genesis_accounts ~logger ~(runtime_config_opt : Runtime_config.t option)
| Some runtime_config -> (
let%bind precomputed_values =
match%map
Genesis_ledger_helper.init_from_config_file ~logger ~proof_level:None
Genesis_ledger_helper.init_from_config_file ~logger
~proof_level:Genesis_constants.Compiled.proof_level
~genesis_constants ~constraint_constants runtime_config
~cli_proof_level:None
with
Expand Down