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: 2578
Status: OK
Image: melezhik/sparrow:alpine
Worker status: OK
---
Date: 12.01.2023 @ 20:41
Time elapsed: 78 sec
---
SCM: https://github.com/melezhik/kris.git
Git sha: 3081e2b
Git comment: test
tasks:
  -
    name: example_task
    language: Bash
    default: true
    code: |
      echo "Hello Kris! how are you?"
    if:
      language: Raku
      code: |
        #say "skip this task ...";
        #update_state %( status => "skip")
20:40:49 :: [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
20:40:53 :: [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]
20:40:55 :: tar -xzf source.tar.gz 
[task run: task.raku - tasks/example_task-if]
[dump code: task.raku]
[1] #say "skip this task ...";
[2] #update_state %( status => "skip")
[3] 
[task stdout]
[task run: task.bash - tasks/example_task]
[dump code: task.bash]
[1] echo "Hello Kris! how are you?"
[2] 
[task stdout]
20:40:57 :: Hello Kris! how are you?