This repository was archived by the owner on Jul 5, 2024. It is now read-only.
Fix testool manifest and add test it in github actions#1535
Merged
Conversation
hero78119
reviewed
Jul 20, 2023
Contributor
There was a problem hiding this comment.
Hi @adria0 new added CI step is failed
---- compiler::test::test_docker_solidity stdout ----
Error: docker ["run", "-i", "--rm", "solc", "--standard-json", "-"] failed "Unable to find image 'solc:latest' locally\ndocker: Error response from daemon: pull access denied for solc, repository does not exist or may require 'docker login': denied: requested access to the resource is denied.\nSee 'docker run --help'.\n" when compiling >>>"{\"language\":\"Solidity\",\"settings\":{\"optimizer\":{\"enabled\":false,\"details\":{\"jumpdestRemover\":false,\"peephole\":false,\"inliner\":false}},\"outputSelection\":{\"*\":{\"*\":[\"evm.bytecode\"]}}},\"sources\":{\"stdin\":{\"content\":\"contract A{}\"}}}"<<<
---- compiler::test::test_docker_yul stdout ----
Error: docker ["run", "-i", "--rm", "solc", "--standard-json", "-"] failed "Unable to find image 'solc:latest' locally\ndocker: Error response from daemon: pull access denied for solc, repository does not exist or may require 'docker login': denied: requested access to the resource is denied.\nSee 'docker run --help'.\n" when compiling >>>"{\"language\":\"Yul\",\"settings\":{\"optimizer\":{\"enabled\":false,\"details\":{\"jumpdestRemover\":false,\"peephole\":false,\"inliner\":false}},\"outputSelection\":{\"*\":{\"*\":[\"evm.bytecode\"]}}},\"sources\":{\"stdin\":{\"content\":\"\\n{\\n function power(base, exponent) -> result\\n {\\n result := 1\\n for { let i := 0 } lt(i, exponent) { i := add(i, 1) }\\n {\\n result := mul(result, base)\\n }\\n }\\n}\\n \"}}}"<<<
---- compiler::test::test_docker_lll stdout ----
Error: docker ["run", "-i", "--rm", "lllc"] failed "Unable to find image 'lllc:latest' locally\ndocker: Error response from daemon: pull access denied for lllc, repository does not exist or may require 'docker login': denied: requested access to the resource is denied.\nSee 'docker run --help'.\n" when compiling >>>"[[0]] (+ 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 4)"<<<
failures:
compiler::test::test_docker_lll
compiler::test::test_docker_solidity
compiler::test::test_docker_yul
Seems the reason is need to execute testtool/test-docker.sh in advanced to build the docker image locally
ab1f790 to
ebbf695
Compare
Contributor
Author
|
Hey @hero78119 , thanks for checking this! |
ebbf695 to
68db8bd
Compare
Contributor
Author
Yep, agree! |
This file contains hidden or 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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Description
Testool failed to compile after #1524, this is due:
test-circuitsfeatureType of change
Bug fix (non-breaking change which fixes an issue)
Contents