gitlab-ci-local icon indicating copy to clipboard operation
gitlab-ci-local copied to clipboard

Support Gitlab ANSI section

Open firecow opened this issue 4 weeks ago • 0 comments

Is your feature request related to a problem? Please describe.

      function section_start() {
        local id="${1}"
        local title="${2}"
        echo -e "\e[0Ksection_start:$(date +%s):${id}\r\e[0K${title}"
      }
      function section_end() {
        local id="${1}"
        echo -e "\e[0Ksection_end:$(date +%s):${id}\r\e[0K"
      }

Describe the solution you'd like I would like gitlab-ci-local to print and make a timing like Gitlab CI/CD does, when sections are used

firecow avatar Dec 02 '25 12:12 firecow