This repository has been archived by the owner on Aug 30, 2022. It is now read-only.
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.
Change Description
Modified behavior of Contracts builds regarding the specified EOSIO dependency in the
pipeline.jsonc
file:pipeline.jsonc
.$EOSIO_VERSION
) into commit hashes ($EOSIO_COMMIT
) to pull Docker containers.$EOSIO_VERSION
) input.See:
Build 1076 | Build with pre-existing EOSIO and CDT artifact defined by commit hash. Container pulled as specified by commit hash.
Build 1077 | Build with pre-existing EOSIO and CDT artifact defined by branch name. Container pulled as specified by branch.
Build 1078 | Build with pre-existing EOSIO and CDT artifact defined by tag name. Container pulled as specified by tag.
Build 1079 | Build with non-existing EOSIO artifact defined by commit. Contract build waits for artifact to appear.
Build 1080 | Build with non-existing EOSIO artifact defined by branch. Contract build waits for artifact to appear.
Build 1081 | Build with EOSIO artifact defined by branch that has a build in progress. Container pulled based on branch name, but one commit behind as expected to avoid waiting.
Actions | Actions build ensuring no CI regressions for forks.
Deployment Changes
API Changes
Documentation Additions