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

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

  • Summary
  • Pipeline YAML
  • Report
BuildID: 2590
Status: OK
Image: melezhik/sparrow:alpine
Worker status: OK
---
Date: 13.01.2023 @ 18:10
Time elapsed: 183 sec
---
SCM: https://github.com/melezhik/kris.git
Git sha: d39fdb9
Git comment: fix typo
tasks:
  -
    name: main
    language: Raku
    default: true
    code: |
      say config().perl;
    depends:
      -
        name: task1
  -
    name: task1
    language: Raku
    code: |
      say "Hello Kris! You say [{config()<message>}]";
      update_state %( MESSAGE => "[{config()<message>}]" );
    hub:
      language: Raku
      code: |
        update_state %(
          list => [
              %(
                config =>  { message => "How" },
              ),
              %(
                config => { message => "are you?" },
              ),            
          ]
        );
    followup:
      -
        name: dump
  -
    name: dump
    language: Raku
    config:
      foo: bar
    code: |
      say config()<foo>;
      say config()<parent>.perl;
18:08:59 :: [repository] - index updated from https://sparrowhub.io/repo/api/v1/index
run stage: run
[task run: task.raku - tasks/task1-hub]
[dump code: task.raku]
[1] update_state %(
[2]   list => [
[3]       %(
[4]         config =>  { message => "How" },
[5]       ),
[6]       %(
[7]         config => { message => "are you?" },
[8]       ),            
[9]   ]
[10] );
[11] 
[task stdout]
[task run: task.raku - tasks/task1]
[dump code: task.raku]
[1] say "Hello Kris! You say [{config()<message>}]";
[2] update_state %( MESSAGE => "[{config()<message>}]" );
[3] 
[task stdout]
18:09:08 :: Hello Kris! You say [How]
[task run: task.raku - tasks/task1]
[dump code: task.raku]
[1] say "Hello Kris! You say [{config()<message>}]";
[2] update_state %( MESSAGE => "[{config()<message>}]" );
[3] 
[task stdout]
18:09:40 :: Hello Kris! You say [are you?]
18:09:30 :: [repository] - index updated from https://sparrowhub.io/repo/api/v1/index
run stage: run
[task run: task.raku - tasks/dump]
[dump code: task.raku]
[1] say config()<foo>;
[2] say config()<parent>.perl;
[3] 
[task stdout]
18:09:34 :: bar
18:09:35 :: ${:state(${:MESSAGE("[How]"), :__data__(${:task-check-err-cnt(Any)})})}
18:10:04 :: [repository] - index updated from https://sparrowhub.io/repo/api/v1/index
run stage: run
[task run: task.raku - tasks/dump]
[dump code: task.raku]
[1] say config()<foo>;
[2] say config()<parent>.perl;
[3] 
[task stdout]
18:10:09 :: bar
18:10:09 :: ${:state(${:MESSAGE("[are you?]"), :__data__(${:task-check-err-cnt(Any)})})}
18:08:21 :: [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
18:08:25 :: [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]
18:08:28 :: tar -xzf source.tar.gz 
[task run: task.raku - tasks/main]
[dump code: task.raku]
[1] say config().perl;
[2] 
[task stdout]
18:10:17 :: ${:tasks(${:task1(${:state(${:list($[{:MESSAGE("[How]"), :__data__(${:task-check-err-cnt(Any)})}, {:MESSAGE("[are you?]"), :__data__(${:task-check-err-cnt(Any)})}])})})})}