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

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

  • Summary
  • Pipeline YAML
  • Report
BuildID: 2533
Status: FAIL
Image: melezhik/sparrow:alpine
Worker status: OK
---
Date: 10.01.2023 @ 01:06
Time elapsed: 712 sec
---
SCM: https://github.com/melezhik/ra-Gauge.git
Git sha: 050572f
Git comment: Merge branch 'Kaiepi:main' into main
tasks:
  -
    name: zef-build
    language: Bash
    default: true
    code: |
      set -e
      raku --version
      cd source/
      zef install --deps-only --/test .
      zef test .
      zef install . 
    followup:
      -
        name: check-doc
  -
    name: check-doc
    plugin: good-doc
    config:
      path: source/README.md
00:55:53 :: [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:55:57 :: [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:55:59 :: tar -xzf source.tar.gz 
[task run: task.bash - tasks/zef-build]
[dump code: task.bash]
[1] set -e
[2] raku --version
[3] cd source/
[4] zef install --deps-only --/test .
[5] zef test .
[6] zef install . 
[7] 
[task stdout]
00:56:00 :: Welcome to Rakudo™ v2022.07.
00:56:00 :: Implementing the Raku® Programming Language v6.d.
00:56:00 :: Built on MoarVM version 2022.07.
00:56:03 :: ===> Testing: Gauge:ver<1.0.1>:auth<zef:Kaiepi>:api<1>
00:56:19 :: ===> Testing [OK] for Gauge:ver<1.0.1>:auth<zef:Kaiepi>:api<1>
00:56:21 :: ===> Testing: Gauge:ver<1.0.1>:auth<zef:Kaiepi>:api<1>
00:56:37 :: ===> Testing [OK] for Gauge:ver<1.0.1>:auth<zef:Kaiepi>:api<1>
00:56:37 :: ===> Installing: Gauge:ver<1.0.1>:auth<zef:Kaiepi>:api<1>
[task stderr]
00:56:37 :: All candidates are currently installed
some followup jobs failed or timeouted: ${:FAIL(0), :OK(0), :TIMEOUT(1)}
The spawned command 'docker exec -i sparrow-worker sh -l /var/.sparrowdo/env/zef-build/.sparrowdo/sparrowrun.sh' exited unsuccessfully (exit code: 1, 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:56:52 :: [repository] - index updated from https://sparrowhub.io/repo/api/v1/index
run stage: run
00:56:56 :: [repository] - installing good-doc, version 0.000014
[task run: task.bash - check-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]
00:56:59 :: 
00:56:59 :: use v6.d;
00:56:59 :: use Gauge;
00:56:59 :: 
00:56:59 :: #|[ Jury-rigged benchmark that keys it/s counts of an evaluated code block. ]
00:56:59 :: sub MAIN(
00:56:59 ::     **@code,
00:56:59 ::     #|[ The number of threads to dedicate to benchmarking. ]
00:56:59 ::     UInt:D :j(:$jobs) = $*KERNEL.cpu-cores.pred,
00:56:59 ::     #|[ The duration in seconds over which timestamps will be aggregated. ]
00:56:59 ::     Real:D :p(:$period) = 1,
00:56:59 ::     #|[ The cooldown in seconds performed between each individual benchmark. ]
00:56:59 ::     Real:D :c(:$cooldown) = (try 2 / 3 * $jobs * $period orelse 2 / 3 * $*KERNEL.cpu-cores.pred),
00:56:59 ::     #|[ Whether or not ANSI 24-bit SGR escape sequences should be suppressed.
00:56:59 ::         These highlight blocks of it/s counts opneing with newfound maximums. ]
00:56:59 ::     Bool:D :m(:$mono) = False,
00:56:59 :: --> Nil) {
00:56:59 ::     use MONKEY-SEE-NO-EVAL;
00:56:59 ::     map $mono ?? &mono !! &poly,
00:56:59 ::         Gauge(EVAL Qa[-> { @code.join() }])
00:56:59 ::             .poll($period)
00:56:59 ::             .pledge($jobs)
00:56:59 ::             .throttle($cooldown);
00:56:59 :: }
00:56:59 :: #=[ Benchmark threads are run once an iteration of any existing threads has
00:56:59 ::     been exhausted. This is staggered by the cooldown, and by default, allows
00:56:59 ::     for multiple benchmarks to be taken with a brief overlap of threaded work,
00:56:59 ::     reducing the time needed to aggregate results while keeping low overhead. ]
00:56:59 :: 
00:56:59 :: sub poly(Int:D $next --> Empty) {
00:56:59 ::     my constant @mark = «\e[48;5;198m \e[48;5;202m \e[48;5;178m \e[48;5;41m \e[48;5;25m \e[48;5;129m»;
00:56:59 ::     state $mark is default(-1);
00:56:59 ::     state $peak is default(0);
00:56:59 :: 
00:56:59 ::     my $jump := $peak < $next;
00:56:59 ::     $mark += $jump;
00:56:59 ::     $mark %= @mark;
00:56:59 ::     $peak max= $next;
00:56:59 :: 
00:56:59 ::     my $note = @mark[$mark];
00:56:59 ::     $note ~= $jump ?? '⊛' !! '∗';
00:56:59 ::     $note ~= " \e[m";
00:56:59 ::     $note ~= $next;
00:56:59 :: 
00:56:59 ::     put $note
00:56:59 :: }
00:56:59 :: 
00:56:59 :: sub mono(Int:D $next --> Empty) {
00:56:59 ::     state $peak is default(0);
00:56:59 :: 
00:56:59 ::     my $jump := $peak < $next;
00:56:59 ::     $peak max= $next;
00:56:59 :: 
00:56:59 ::     my $note = $jump ?? '⊛' !! '∗';
00:56:59 ::     $note ~= ' ';
00:56:59 ::     $note ~= $next;
00:56:59 :: 
00:56:59 ::     put $note
00:56:59 :: }
00:57:00 :: run raku -I lib /home/worker/.sparrow6/tmp/18015/code.raku ...
00:57:11 :: ⊛ 23415300