diff --git a/.github/actions/build-selftests/helpers.sh b/.github/actions/build-selftests/helpers.sh index 08c307e..3b2cda0 100644 --- a/.github/actions/build-selftests/helpers.sh +++ b/.github/actions/build-selftests/helpers.sh @@ -4,23 +4,15 @@ foldable() { local YELLOW='\033[1;33m' local NOCOLOR='\033[0m' - if [ -z ${GITHUB_WORKFLOW+x} ]; then - echo travis_fold:$1:$2 + if [ $1 = "start" ]; then + line="::group::$2" if [ ! -z "${3:-}" ]; then - echo -e "${YELLOW}$3${NOCOLOR}" + line="$line - ${YELLOW}$3${NOCOLOR}" fi - echo else - if [ $1 = "start" ]; then - line="::group::$2" - if [ ! -z "${3:-}" ]; then - line="$line - ${YELLOW}$3${NOCOLOR}" - fi - else - line="::endgroup::" - fi - echo -e "$line" + line="::endgroup::" fi + echo -e "$line" } __print() { diff --git a/travis-ci/vmtest/helpers.sh b/travis-ci/vmtest/helpers.sh index 08c307e..3b2cda0 100755 --- a/travis-ci/vmtest/helpers.sh +++ b/travis-ci/vmtest/helpers.sh @@ -4,23 +4,15 @@ foldable() { local YELLOW='\033[1;33m' local NOCOLOR='\033[0m' - if [ -z ${GITHUB_WORKFLOW+x} ]; then - echo travis_fold:$1:$2 + if [ $1 = "start" ]; then + line="::group::$2" if [ ! -z "${3:-}" ]; then - echo -e "${YELLOW}$3${NOCOLOR}" + line="$line - ${YELLOW}$3${NOCOLOR}" fi - echo else - if [ $1 = "start" ]; then - line="::group::$2" - if [ ! -z "${3:-}" ]; then - line="$line - ${YELLOW}$3${NOCOLOR}" - fi - else - line="::endgroup::" - fi - echo -e "$line" + line="::endgroup::" fi + echo -e "$line" } __print() {