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

SparrowCI Report - gh-melezhik-Terminal-Graphing-BarChart | [image: melezhik/sparrow:alpine]

  • Summary
  • Pipeline YAML
  • Report
BuildID: 2889
Status: OK
Image: melezhik/sparrow:alpine
Worker status: OK
---
Date: 07.02.2023 @ 19:42
Time elapsed: 70 sec
---
SCM: https://github.com/melezhik/Terminal-Graphing-BarChart.git
Git sha: 69418aa
Git comment: correct ci
tasks:
  -
    name: zef-build
    language: Bash
    default: true
    code: |
      set -e
      cd source/
      zef install --deps-only --test-depends --build-depends --/test .
      zef test .
    followup:
      -
        name: good-doc
  -
    name: good-doc
    plugin: good-doc
    config:
      path: source/README.md
19:42:03 :: [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
19:42:05 :: [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]
19:42:07 :: tar -xzf source.tar.gz 
[task run: task.bash - tasks/zef-build]
[dump code: task.bash]
[1] set -e
[2] cd source/
[3] zef install --deps-only --test-depends --build-depends --/test .
[4] zef test .
[5] 
[task stdout]
19:42:09 :: ===> Searching for missing dependencies: Listicles:ver<1.6.0+>
19:42:12 :: ===> Installing: Listicles:ver<1.6.0>:auth<zef:masukomi>:api<1>
19:42:13 :: ===> Testing: Terminal::Graphing::BarChart:ver<2.0.0>:auth<zef:masukomi>:api<1>
19:42:16 :: ===> Testing [OK] for Terminal::Graphing::BarChart:ver<2.0.0>:auth<zef:masukomi>:api<1>
[task stderr]
19:42:16 :: ===> Updating fez mirror: https://360.zef.pm/
19:42:16 :: ===> Updated fez mirror: https://360.zef.pm/
19:42:22 :: [repository] - index updated from https://sparrowhub.io/repo/api/v1/index
run stage: run
19:42:25 :: [repository] - installing good-doc, version 0.000014
[task run: task.bash - good-doc]
[dump code: task.bash]
[1] set -e
[2] 
[3] cd $dir
[4] 
[5] cat $file
[6] 
[7] rakudo_path=$(config rakudo_path)
[8] 
[9] if ! test -z $rakudo_path; then
[10]   echo "Using rakudo from $rakudo_path:"
[11]   eval "$($rakudo_path/scripts/set-env.sh --quiet)"
[12]   raku --version
[13] fi
[14] 
[15] echo "run raku -I lib $file ..."
[16] 
[17] raku -I lib $file || echo "warn: good_doc failed"
[18] 
[task stdout]
19:42:26 :: 
19:42:26 :: # VERTICAL BAR CHART
19:42:26 :: use Terminal::Graphing::BarChart::Vertical;
19:42:26 :: 
19:42:26 :: my $x_and_y_axis_graph = Terminal::Graphing::BarChart::Vertical.new(
19:42:26 ::     data => [0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100],
19:42:26 ::     bar_length => 10,
19:42:26 ::     x_axis_labels => <a b c d e f g h i j k>,
19:42:26 ::     y_axis_labels => <0 1 2 3 4 5 6 7 8 9>
19:42:26 :: );
19:42:26 :: 
19:42:26 :: # to get the string version of the graph
19:42:26 :: $x_and_y_axis_graph.generate();
19:42:26 :: 
19:42:26 :: # to print the graph to Standard Out
19:42:26 :: $x_and_y_axis_graph.print();
19:42:27 :: run raku -I lib /home/worker/.sparrow6/tmp/17411/code.raku ...
19:42:27 :: 9 │                     █
19:42:27 :: 8 │                   █ █
19:42:27 :: 7 │                 █ █ █
19:42:27 :: 6 │               █ █ █ █
19:42:27 :: 5 │             █ █ █ █ █
19:42:27 :: 4 │           █ █ █ █ █ █
19:42:27 :: 3 │         █ █ █ █ █ █ █
19:42:27 :: 2 │       █ █ █ █ █ █ █ █
19:42:27 :: 1 │     █ █ █ █ █ █ █ █ █
19:42:27 :: 0 │   █ █ █ █ █ █ █ █ █ █
19:42:27 ::    ──────────────────────
19:42:27 ::     a b c d e f g h i j k