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: 2256
Status: FAIL
Image: melezhik/sparrow:alpine
Worker status: OK
---
Date: 21.12.2022 @ 00:06
Time elapsed: 90 sec
---
SCM: https://github.com/melezhik/sparrowci-bugzilla.git
Git sha: 51da1e8
Git comment: 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 -f -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 "comment 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" : "CLOSED",
            "resolution" : "it's all right now!"
          }          
          HERE

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

          echo "bug 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
00:05:29 :: [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
00:05:33 :: [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]
00:05:36 :: 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 -f -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 "comment has been added to https://bugzilla-dev.allizom.org/show_bug.cgi?id=$bugid"
[15] 
[task stdout]
00:06:01 :: {"id":2299}comment has been added to https://bugzilla-dev.allizom.org/show_bug.cgi?id=1632727
[task stderr]
00:06:01 ::   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
00:06:02 ::                                  Dload  Upload   Total   Spent    Left  Speed
00:06:02 :: 
00:06:02 ::   0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
00:06:02 :: 100    91    0    11  100    80     20    150 --:--:-- --:--:-- --:--:--   171
[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" : "CLOSED",
[7]   "resolution" : "it's all right now!"
[8] }          
[9] HERE
[10] 
[11] curl -f -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 "bug has been closed https://bugzilla-dev.allizom.org/show_bug.cgi?id=$bugid"
[16] 
[task stdout]
[task stderr]
00:06:02 ::   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
00:06:02 ::                                  Dload  Upload   Total   Spent    Left  Speed
00:06:02 :: 
00:06:02 ::   0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
00:06:02 :: 100    91    0     0  100    91      0    586 --:--:-- --:--:-- --:--:--   590
00:06:02 :: curl: (22) The requested URL returned error: 404
00:06:02 :: task exit status: 22
00:06:02 :: task tasks/main FAILED
The spawned command 'docker exec -i sparrow-worker sh -l /var/.sparrowdo/env/main/.sparrowdo/sparrowrun.sh' exited unsuccessfully (exit code: 22, signal: 0)
  in block <unit> at /home/sph/.raku/resources/57C38AFDF922EB0C43584FF5F701A03850B5346F line 13
  in sub MAIN at /home/sph/.raku/bin/sparrowdo line 3
  in block <unit> at /home/sph/.raku/bin/sparrowdo line 1

00:05:44 :: [repository] - index updated from https://sparrowhub.io/repo/api/v1/index
run stage: run
00:05:47 :: [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]
00:05:52 :: 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]
00:05:52 :: git commit: 51da1e8
00:05:52 :: git comment: close!