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: 2588
Status: OK
Image: melezhik/sparrow:alpine
Worker status: OK
---
Date: 13.01.2023 @ 17:23
Time elapsed: 140 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;
17:23:08 :: [repository] - index updated from https://sparrowhub.io/repo/api/v1/index
run stage: run
[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]
17:23:12 :: Hello Kris! You say []
[task stderr]
17:23:12 :: Use of uninitialized value %{'message'} of type Any in string context.
17:23:12 :: Methods .^name, .raku, .gist, or .say can be used to stringify it to something meaningful.
17:23:12 ::   in block <unit> at /var/.sparrowdo/env/main/.sparrowdo/tasks/task1/task.raku line 1
17:23:12 :: Use of uninitialized value %{'message'} of type Any in string context.
17:23:12 :: Methods .^name, .raku, .gist, or .say can be used to stringify it to something meaningful.
17:23:12 ::   in block <unit> at /var/.sparrowdo/env/main/.sparrowdo/tasks/task1/task.raku line 2
17:23:34 :: [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]
17:23:39 :: bar
17:23:39 :: ${:state(${:MESSAGE("[]"), :__data__(${:task-check-err-cnt(Any)})})}
17:22:28 :: [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
17:22:31 :: [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]
17:22:34 :: tar -xzf source.tar.gz 
[task run: task.raku - tasks/main]
[dump code: task.raku]
[1] say config().perl;
[2] 
[task stdout]
17:23:48 :: ${:tasks(${:task1(${:state(${:MESSAGE("[]"), :__data__(${:task-check-err-cnt(Any)})})})})}