-
Notifications
You must be signed in to change notification settings - Fork 5
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
Enable automated testing for github pull requests #74
Open
cmickeyb
wants to merge
11
commits into
hyperledger-labs:main
Choose a base branch
from
cmickeyb:mic.dec18.github_workflow
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Enable automated testing for github pull requests #74
cmickeyb
wants to merge
11
commits into
hyperledger-labs:main
from
cmickeyb:mic.dec18.github_workflow
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Initial commit for the example contract family. The example contract family is primarily used as a means of documenting the process of writing, building, and extending a contract family. In addition, the example contract family provides a template for building a new contract family. Copying the example contract family to a new directory and editing family.cmake should be sufficient to create a new family. Signed-off-by: Mic Bowman <[email protected]>
Signed-off-by: Mic Bowman <[email protected]>
Adds a simple, getting started target for building and running the example contract. Add a docker target to start a contracts container that is running Jupyter. The current source directory is mounted in /project/pdo/dev inside the container. When used with the Jupyter shell, this provides a relatively easy way to develop and test contracts, specifically the example contract. Do not remove model during docker cleanup. There is no particular reason to remove the downloaded model during docker clean up. This should save some time during build/debug/test cycles. The model can be removed with the clean_model target. Signed-off-by: Mic Bowman <[email protected]>
Adds the basic factory/template model for the example contract. This should allow for, more or less, a cut and paste for creating a new contract that preserved the counter. That is, the factory & template are for the specific contract type and would have to be replaced completely for a new contract. Signed-off-by: Mic Bowman <[email protected]>
Signed-off-by: Mic Bowman <[email protected]>
Signed-off-by: Mic Bowman <[email protected]>
Signed-off-by: Mic Bowman <[email protected]>
For consistency of terminology... it is a docker *registry*, not a docker *repository*. Signed-off-by: Mic Bowman <[email protected]>
Update handling of user accounts and permissions to simplify the use of PDO docker images from a registry. Signed-off-by: Mic Bowman <[email protected]>
Signed-off-by: Mic Bowman <[email protected]> Signed-off-by: Mic Bowman <[email protected]>
Add github workflow to run tests on the default suite of contract families (currently all families). Rather than build the necessary PDO docker images, they are pulled from the github container registry. The tests will fail unless the appropriate images are available. Signed-off-by: Mic Bowman <[email protected]> Signed-off-by: Mic Bowman <[email protected]>
cmickeyb
force-pushed
the
mic.dec18.github_workflow
branch
from
December 20, 2024 16:51
561f1d2
to
d61f85f
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Add github workflow to run tests on the default suite of contract families (currently all families). Rather than build the necessary PDO docker images, they are pulled from the github container registry. The tests will fail unless the appropriate images are available.