mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
removed stray (B in CI test output
This commit is contained in:
parent
3eb5ecdf58
commit
25f3565340
@ -100,8 +100,14 @@ else
|
|||||||
log_directory=""
|
log_directory=""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
function printError() { echo "$(tput setaf 1)$1$(tput sgr0)"; }
|
if [ "$CIRCLECI" ]
|
||||||
function printTask() { echo "$(tput bold)$(tput setaf 2)$1$(tput sgr0)"; }
|
then
|
||||||
|
function printTask() { echo "$(tput bold)$(tput setaf 2)$1$(tput setaf 7)"; }
|
||||||
|
function printError() { echo "$(tput setaf 1)$1$(tput setaf 7)"; }
|
||||||
|
else
|
||||||
|
function printTask() { echo "$(tput bold)$(tput setaf 2)$1$(tput sgr0)"; }
|
||||||
|
function printError() { echo "$(tput setaf 1)$1$(tput sgr0)"; }
|
||||||
|
fi
|
||||||
|
|
||||||
printTask "Running commandline tests..."
|
printTask "Running commandline tests..."
|
||||||
# Only run in parallel if this is run on CI infrastructure
|
# Only run in parallel if this is run on CI infrastructure
|
||||||
|
@ -37,9 +37,15 @@ FULLARGS="--optimize --ignore-missing --combined-json abi,asm,ast,bin,bin-runtim
|
|||||||
echo "Checking that the bug list is up to date..."
|
echo "Checking that the bug list is up to date..."
|
||||||
"$REPO_ROOT"/scripts/update_bugs_by_version.py
|
"$REPO_ROOT"/scripts/update_bugs_by_version.py
|
||||||
|
|
||||||
function printTask() { echo "$(tput bold)$(tput setaf 2)$1$(tput sgr0)"; }
|
if [ "$CIRCLECI" ]
|
||||||
|
then
|
||||||
|
function printTask() { echo "$(tput bold)$(tput setaf 2)$1$(tput setaf 7)"; }
|
||||||
|
function printError() { echo "$(tput setaf 1)$1$(tput setaf 7)"; }
|
||||||
|
else
|
||||||
|
function printTask() { echo "$(tput bold)$(tput setaf 2)$1$(tput sgr0)"; }
|
||||||
|
function printError() { echo "$(tput setaf 1)$1$(tput sgr0)"; }
|
||||||
|
fi
|
||||||
|
|
||||||
function printError() { echo "$(tput setaf 1)$1$(tput sgr0)"; }
|
|
||||||
|
|
||||||
function compileFull()
|
function compileFull()
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user