Home Quick start All builds News Donations
More
Log In
Light Theme Docs
Workers

SparrowCI Report - gh-melezhik-sparrowci-bugzilla | [image: melezhik/sparrow:alpine]

  • Summary
  • Pipeline YAML
  • Report
BuildID: 2265
Status: OK
Image: melezhik/sparrow:alpine
Worker status: OK
---
Date: 21.12.2022 @ 02:45
Time elapsed: 83 sec
---
SCM: https://github.com/melezhik/sparrowci-bugzilla.git
Git sha: 4109d72
Git comment: concise . close!
secrets:
  - BUGZILLA_RESTAPI_KEY
  
tasks:
  - 
    name: main
    default: true
    language: Raku
    config:
      bugid: 1632727
    init: |
      run_task "comment";
      run_task "close" if config()<tasks><git-commit><state><comment> ~~ /'close!'/;
    subtasks:
      - 
        name: comment
        language: Bash
        code: |
          set -e
          bugid=$(config bugid)
          cat << HERE > data.json
          {
            "comment" : "This comment is made by SparrowCI",
            "is_private" : false
          }      
          HERE

          curl -fs -H "Content-Type: application/json" -X POST \
          --data @data.json \
          https://bugzilla-dev.allizom.org/rest/bug/$bugid/comment?api_key=$BUGZILLA_RESTAPI_KEY

          echo -e "\ncomment has been added to https://bugzilla-dev.allizom.org/show_bug.cgi?id=$bugid"
      - 
        name: close
        language: Bash
        code: |
          set -e
          bugid=$(config bugid)
          cat << HERE > data.json
          {
            "ids" : [$bugid],
            "status" : "RESOLVED",
            "resolution" : "MOVED"
          }          
          HERE

          curl -fs -H "Content-Type: application/json" -X PUT \
          --data @data.json \
          https://bugzilla-dev.allizom.org/rest/bug/$bugid?api_key=$BUGZILLA_RESTAPI_KEY

          echo -e "\nbug has been closed https://bugzilla-dev.allizom.org/show_bug.cgi?id=$bugid"


    depends:
      -
        name: git-commit
  - name: git-commit
    plugin: git-commit-data
    config:
      dir: source
02:44:39 :: [repository] - index updated from https://sparrowhub.io/repo/api/v1/index
run stage: run
source directory does not yet exist, download source archive from storage
02:44:44 :: [repository] - installing pack-unpack, version 0.000001
[task run: task.bash - unpack source archive]
[dump code: task.bash]
[1] set -e
[2] 
[3] file=$(config file)
[4] dir=$(config dir)
[5] 
[6] echo "tar -xzf $file "
[7] 
[8] tar -xzf $file
[9] 
[10] if test $dir; then
[11]   ls -l $dir
[12] fi
[13] 
[14] 
[task stdout]
02:44:47 :: tar -xzf source.tar.gz 
[task run: task.bash - tasks/main]
[dump code: task.bash]
[1] set -e
[2] bugid=$(config bugid)
[3] cat << HERE > data.json
[4] {
[5]   "comment" : "This comment is made by SparrowCI",
[6]   "is_private" : false
[7] }      
[8] HERE
[9] 
[10] curl -fs -H "Content-Type: application/json" -X POST \
[11] --data @data.json \
[12] https://bugzilla-dev.allizom.org/rest/bug/$bugid/comment?api_key=$BUGZILLA_RESTAPI_KEY
[13] 
[14] echo -e "\ncomment has been added to https://bugzilla-dev.allizom.org/show_bug.cgi?id=$bugid"
[15] 
[task stdout]
02:45:08 :: {"id":2313}
02:45:08 :: comment has been added to https://bugzilla-dev.allizom.org/show_bug.cgi?id=1632727
[task run: task.bash - tasks/main]
[dump code: task.bash]
[1] set -e
[2] bugid=$(config bugid)
[3] cat << HERE > data.json
[4] {
[5]   "ids" : [$bugid],
[6]   "status" : "RESOLVED",
[7]   "resolution" : "MOVED"
[8] }          
[9] HERE
[10] 
[11] curl -fs -H "Content-Type: application/json" -X PUT \
[12] --data @data.json \
[13] https://bugzilla-dev.allizom.org/rest/bug/$bugid?api_key=$BUGZILLA_RESTAPI_KEY
[14] 
[15] echo -e "\nbug has been closed https://bugzilla-dev.allizom.org/show_bug.cgi?id=$bugid"
[16] 
[task stdout]
02:45:09 :: {"bugs":[{"alias":null,"last_change_time":"2022-12-21T02:45:08Z","id":1632727,"changes":{}}]}
02:45:09 :: bug has been closed https://bugzilla-dev.allizom.org/show_bug.cgi?id=1632727
02:44:55 :: [repository] - index updated from https://sparrowhub.io/repo/api/v1/index
run stage: run
02:44:57 :: [repository] - installing git-commit-data, version 0.000004
[task run: task.bash - git-commit]
[dump code: task.bash]
[1] cd $(config dir)
[2] 
[3] echo "get commit data from $(pwd) ..."
[4] 
[5] git show -s --format=%h > $cache_root_dir/sha.txt
[6] git show -s --format=%s > $cache_root_dir/comment.txt
[7] 
[task stdout]
02:45:01 :: get commit data from /var/.sparrowdo/env/main/.sparrowdo/source ...
[task run: task.pl6 - git-commit]
[dump code: task.pl6]
[1] say "git commit: ", "{cache_root_dir()}/sha.txt".IO.slurp.chomp;
[2] say "git comment: ", "{cache_root_dir()}/comment.txt".IO.slurp.chomp;
[3] 
[4] 
[5] update_state({
[6]   sha => "{cache_root_dir()}/sha.txt".IO.slurp.chomp,
[7]   comment => "{cache_root_dir()}/comment.txt".IO.slurp.chomp
[8] });
[9] 
[task stdout]
02:45:02 :: git commit: 4109d72
02:45:02 :: git comment: concise . close!