Merge branch 'master' into spike/local-continuous-debug
This commit is contained in:
commit
ee1c11542e
|
@ -11,7 +11,7 @@ namespace DistTestCore.Marketplace
|
||||||
|
|
||||||
public CodexContractsContainerRecipe()
|
public CodexContractsContainerRecipe()
|
||||||
{
|
{
|
||||||
Image = "codexstorage/dist-tests-codex-contracts-eth:sha-b4e4897";
|
Image = "codexstorage/dist-tests-codex-contracts-eth:sha-9a83699";
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void Initialize(StartupConfig startupConfig)
|
protected override void Initialize(StartupConfig startupConfig)
|
||||||
|
|
|
@ -91,8 +91,13 @@ namespace DistTestCore.Marketplace
|
||||||
{
|
{
|
||||||
debug(line);
|
debug(line);
|
||||||
if (line.Contains(RequiredCompiledString)) SeenCompileString = true;
|
if (line.Contains(RequiredCompiledString)) SeenCompileString = true;
|
||||||
|
if (line.Contains(ReadyString))
|
||||||
|
{
|
||||||
|
if (!SeenCompileString) throw new Exception("CodexContracts deployment failed. " +
|
||||||
|
"Solidity files not compiled before process exited.");
|
||||||
|
|
||||||
if (SeenCompileString && line.Contains(ReadyString)) Found = true;
|
Found = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue