BuildID: 2534
Status: FAIL
Image: melezhik/sparrow:alpine
Worker status: OK
---
Date: 10.01.2023 @ 03:40
Time elapsed: 713 sec
---
SCM:
https://github.com/melezhik/ra-Gauge.git
Git sha: 52426a2
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
[35m03:29:18[0m :: [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
[35m03:29:21[0m :: [repository] - installing pack-unpack, version 0.000001
[1;36m[task run: task.bash - unpack source archive][0m
[1;36m[dump code: task.bash][0m
[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]
[1;36m[task stdout][0m
[35m03:29:24[0m :: tar -xzf source.tar.gz
[1;36m[task run: task.bash - tasks/zef-build][0m
[1;36m[dump code: task.bash][0m
[1] set -e
[2] raku --version
[3] cd source/
[4] zef install --deps-only --/test .
[5] zef test .
[6] zef install .
[7]
[1;36m[task stdout][0m
[35m03:29:25[0m :: Welcome to Rakudo™ v2022.07.
[35m03:29:25[0m :: Implementing the Raku® Programming Language v6.d.
[35m03:29:25[0m :: Built on MoarVM version 2022.07.
[35m03:29:29[0m :: ===> Testing: Gauge:ver<1.0.3>:auth<zef:Kaiepi>:api<1>
[35m03:29:45[0m :: ===> Testing [OK] for Gauge:ver<1.0.3>:auth<zef:Kaiepi>:api<1>
[35m03:29:46[0m :: ===> Testing: Gauge:ver<1.0.3>:auth<zef:Kaiepi>:api<1>
[35m03:30:02[0m :: ===> Testing [OK] for Gauge:ver<1.0.3>:auth<zef:Kaiepi>:api<1>
[35m03:30:02[0m :: ===> Installing: Gauge:ver<1.0.3>:auth<zef:Kaiepi>:api<1>
[1;36m[task stderr][0m
[35m03:30:02[0m :: 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
[35m03:30:19[0m :: [repository] - index updated from https://sparrowhub.io/repo/api/v1/index
run stage: run
[35m03:30:23[0m :: [repository] - installing good-doc, version 0.000014
[1;36m[task run: task.bash - check-doc][0m
[1;36m[dump code: task.bash][0m
[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]
[1;36m[task stdout][0m
[35m03:30:25[0m ::
[35m03:30:25[0m :: use v6.d;
[35m03:30:25[0m :: use Gauge;
[35m03:30:25[0m ::
[35m03:30:25[0m :: #|[ Jury-rigged benchmark that keys it/s counts of an evaluated code block. ]
[35m03:30:25[0m :: sub MAIN(
[35m03:30:25[0m :: **@code,
[35m03:30:25[0m :: #|[ The number of threads to dedicate to benchmarking. ]
[35m03:30:25[0m :: UInt:D :j(:$jobs) = $*KERNEL.cpu-cores.pred,
[35m03:30:25[0m :: #|[ The duration in seconds over which timestamps will be aggregated. ]
[35m03:30:25[0m :: Real:D :p(:$period) = 1,
[35m03:30:25[0m :: #|[ The cooldown in seconds performed between each individual benchmark. ]
[35m03:30:25[0m :: Real:D :c(:$cooldown) = (try 2 / 3 * $jobs * $period) // (2 / 3 * $*KERNEL.cpu-cores.pred),
[35m03:30:25[0m :: #|[ Whether or not ANSI 24-bit SGR escape sequences should be suppressed.
[35m03:30:25[0m :: These highlight blocks of it/s counts opening with any new maximum. ]
[35m03:30:25[0m :: Bool:D :m(:$mono) = False,
[35m03:30:25[0m :: --> Nil) {
[35m03:30:25[0m :: use MONKEY-SEE-NO-EVAL;
[35m03:30:25[0m :: map $mono ?? &mono !! &poly,
[35m03:30:25[0m :: Gauge(EVAL Qa[-> { @code.join(' ') }])
[35m03:30:25[0m :: .poll($period)
[35m03:30:25[0m :: .pledge($jobs)
[35m03:30:25[0m :: .throttle($cooldown);
[35m03:30:25[0m :: }
[35m03:30:25[0m :: #=[ Benchmark threads are run once an iteration of any existing threads has
[35m03:30:25[0m :: been exhausted. This is staggered by the cooldown, and by default, allows
[35m03:30:25[0m :: for multiple benchmarks to be taken with a brief overlap of threaded work,
[35m03:30:25[0m :: reducing the time needed to collect results while keeping low overhead. ]
[35m03:30:25[0m ::
[35m03:30:25[0m :: sub poly(Int:D $next --> Empty) {
[35m03:30:25[0m :: 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»;
[35m03:30:25[0m :: state $mark is default(-1);
[35m03:30:25[0m :: state $peak is default(-1);
[35m03:30:25[0m ::
[35m03:30:25[0m :: my $jump := $peak < $next;
[35m03:30:25[0m :: $mark += $jump;
[35m03:30:25[0m :: $mark %= @mark;
[35m03:30:25[0m :: $peak max= $next;
[35m03:30:25[0m ::
[35m03:30:25[0m :: my $note = @mark[$mark];
[35m03:30:25[0m :: $note ~= $jump ?? '⊛' !! '∗';
[35m03:30:25[0m :: $note ~= " \e[m";
[35m03:30:25[0m :: $note ~= $next;
[35m03:30:25[0m ::
[35m03:30:25[0m :: put $note
[35m03:30:25[0m :: }
[35m03:30:25[0m ::
[35m03:30:25[0m :: sub mono(Int:D $next --> Empty) {
[35m03:30:25[0m :: state $peak is default(-1);
[35m03:30:25[0m ::
[35m03:30:25[0m :: my $jump := $peak < $next;
[35m03:30:25[0m :: $peak max= $next;
[35m03:30:25[0m ::
[35m03:30:25[0m :: my $note = $jump ?? '⊛' !! '∗';
[35m03:30:25[0m :: $note ~= ' ';
[35m03:30:25[0m :: $note ~= $next;
[35m03:30:25[0m ::
[35m03:30:25[0m :: put $note
[35m03:30:25[0m :: }
[35m03:30:26[0m :: run raku -I lib /home/worker/.sparrow6/tmp/1782/code.raku ...
[35m03:30:37[0m :: [48;5;198m⊛ [m21704110