BuildID: 2280
Status: FAIL
Image: melezhik/sparrow:debian
Worker status: OK
---
Date: 22.12.2022 @ 01:17
Time elapsed: 380 sec
---
SCM:
https://github.com/melezhik/p6-jupyter-kernel.git
Git sha: 64d7f73
Git comment: Merge branch 'bduggan:master' into master
image:
- melezhik/sparrow:debian
tasks:
-
name: main
default: true
language: Raku
code: |
use Text::Table::Simple;
my @columns = ("Rakudo Version", "Status", "Time", "Linux Dist");
my @rows;
my $fail = False;
for config()<tasks><multi-versions><state><list><> -> $i {
@rows.push: [ $i<version>, $i<status>, $i<time>, os() ];
$fail = True unless $i<status> eq "OK";
}
my @table = lol2table(@columns,@rows);
.say for @table;
die "some tests failed" if $fail == True;
depends:
-
name: multi-versions
-
name: multi-versions
language: Raku
config:
list:
# - 2022.04
- 2022.07
- 2022.12
code: |
my @state;
for config()<list><> -> $v {
my $s = %( version => $v );
if "{cache_root_dir()}/{$v}_ok".IO ~~ :e {
$s<status> = "OK";
} else {
$s<status> = "FAIL";
}
if "{cache_root_dir()}/{$v}_time".IO ~~ :e {
$s<time> = "{cache_root_dir()}/{$v}_time".IO.slurp();
} else {
$s<time> = "NA";
}
@state.push: $s;
}
update_state %( list => @state );
init: |
for config()<list><> -> $v {
run_task("test", %( version => $v ));
}
subtasks:
-
name: test
language: Bash
init: |
ignore_error
code: |
set -e
echo "Linux version: $os"
curl -sL https://rakudo.org/dl/rakudo/rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz \
-o rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz
tar -xzf rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz
eval "$(rakudo-moar-$version-01-linux-x86_64-gcc/scripts/set-env.sh)"
which raku
which zef
raku --version
zef --version
cd source/
zef install . --deps-only --test-depends --build-depends --/test -to=home
/usr/bin/time -f "%E real,%U user,%S sys | CPU Percentage: %P" -o "${cache_root_dir}/${version}_time" \
zef test --debug . && touch "${cache_root_dir}/${version}_ok"
depends:
-
name: install-deps
-
name: install-deps
language: Bash
code: |
sudo apt-get install -y time
zef install --/test Text::Table::Simple
[35m01:11:59[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
[35m01:12:04[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
[35m01:12:07[0m :: tar -xzf source.tar.gz
[1;36m[task run: task.raku - tasks/main][0m
[1;36m[dump code: task.raku][0m
[1] use Text::Table::Simple;
[2] my @columns = ("Rakudo Version", "Status", "Time", "Linux Dist");
[3] my @rows;
[4] my $fail = False;
[5] for config()<tasks><multi-versions><state><list><> -> $i {
[6] @rows.push: [ $i<version>, $i<status>, $i<time>, os() ];
[7] $fail = True unless $i<status> eq "OK";
[8] }
[9] my @table = lol2table(@columns,@rows);
[10] .say for @table;
[11] die "some tests failed" if $fail == True;
[12]
[1;36m[task stdout][0m
[35m01:17:22[0m :: O----------------O--------O----------------------------------------------------------O------------O
[35m01:17:22[0m :: | Rakudo Version | Status | Time | Linux Dist |
[35m01:17:22[0m :: O================O========O==========================================================O============O
[35m01:17:22[0m :: | 2022.07 | FAIL | Command exited with non-zero status 1 | debian |
[35m01:17:22[0m :: | | | 0:45.18 real,69.63 user,5.96 sys | CPU Percentage: 167% | |
[35m01:17:22[0m :: | 2022.12 | FAIL | Command exited with non-zero status 1 | debian |
[35m01:17:22[0m :: | | | 1:06.70 real,101.58 user,8.86 sys | CPU Percentage: 165% | |
[35m01:17:22[0m :: ---------------------------------------------------------------------------------------------------
[1;36m[task stderr][0m
[35m01:17:22[0m :: some tests failed
[35m01:17:22[0m :: in block <unit> at /var/.sparrowdo/env/main/.sparrowdo/tasks/main/task.raku line 11
[35m01:17:22[0m ::
[35m01:17:22[0m :: task exit status: 1
[35m01:17:22[0m :: task tasks/main FAILED
The spawned command 'docker exec -i sparrow-worker sh -l /var/.sparrowdo/env/main/.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
[35m01:12:29[0m :: [repository] - index updated from https://sparrowhub.io/repo/api/v1/index
run stage: run
[1;36m[task run: task.bash - tasks/multi-versions][0m
[1;36m[dump code: task.bash][0m
[1] set -e
[2] echo "Linux version: $os"
[3] curl -sL https://rakudo.org/dl/rakudo/rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz \
[4] -o rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz
[5] tar -xzf rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz
[6] eval "$(rakudo-moar-$version-01-linux-x86_64-gcc/scripts/set-env.sh)"
[7] which raku
[8] which zef
[9] raku --version
[10] zef --version
[11]
[12] cd source/
[13] zef install . --deps-only --test-depends --build-depends --/test -to=home
[14] /usr/bin/time -f "%E real,%U user,%S sys | CPU Percentage: %P" -o "${cache_root_dir}/${version}_time" \
[15] zef test --debug . && touch "${cache_root_dir}/${version}_ok"
[16]
[1;36m[task stdout][0m
[35m01:13:12[0m :: Linux version: debian
[35m01:13:14[0m :: Adding Rakudo to PATH
[35m01:13:14[0m :: =======================
[35m01:13:14[0m ::
[35m01:13:14[0m :: Paths successfully added.
[35m01:13:14[0m ::
[35m01:13:14[0m :: ================================================================================
[35m01:13:14[0m :: ========= __ __
[35m01:13:14[0m :: ||_|_|| ============================= ( \,/ )
[35m01:13:14[0m :: || # || Welcome to the Raku Console \_ O _/
[35m01:13:14[0m :: || # || ============================= (_/ \_)
[35m01:13:14[0m ::
[35m01:13:14[0m :: This console has all the tools available you need to get started using Raku.
[35m01:13:14[0m ::
[35m01:13:14[0m :: Rakudo provides an interactive command line interpreter (a so called Read Eval
[35m01:13:14[0m :: Print Loop, REPL for short) you can use to quickly try out pieces of Raku code.
[35m01:13:14[0m :: Start it by typing:
[35m01:13:14[0m ::
[35m01:13:14[0m :: raku
[35m01:13:14[0m ::
[35m01:13:14[0m :: If you already have a Raku program in a file, you can run it by typing:
[35m01:13:14[0m ::
[35m01:13:14[0m :: raku path/to/my/program.raku
[35m01:13:14[0m ::
[35m01:13:14[0m :: To install additional modules you can use the Zef module manager:
[35m01:13:14[0m ::
[35m01:13:14[0m :: zef install Some::Module
[35m01:13:14[0m ::
[35m01:13:14[0m :: https://rakudo.org/ - The home of this implementation of Raku.
[35m01:13:14[0m :: https://raku.land/ - Go here to browse for Raku modules.
[35m01:13:14[0m :: https://docs.raku.org/ - The Raku documentation.
[35m01:13:14[0m :: https://web.libera.chat/#raku - The Raku user chat. Talk to us!
[35m01:13:14[0m ::
[35m01:13:14[0m :: Happy hacking!
[35m01:13:14[0m ::
[35m01:13:14[0m :: ================================================================================
[35m01:13:14[0m ::
[35m01:13:14[0m :: /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.07-01-linux-x86_64-gcc/bin/raku
[35m01:13:14[0m :: /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.07-01-linux-x86_64-gcc/share/perl6/site/bin/zef
[35m01:13:14[0m :: Welcome to Rakudo™ v2022.07.
[35m01:13:14[0m :: Implementing the Raku® Programming Language v6.d.
[35m01:13:14[0m :: Built on MoarVM version 2022.07.
[35m01:13:45[0m :: v0.14.5
[35m01:14:09[0m :: ===> Searching for missing dependencies: UUID, Log::Async, Net::ZMQ:ver<0.8>, Digest::HMAC, Digest::SHA256::Native
[35m01:15:13[0m :: ===> Searching for missing dependencies: Digest:ver<0.18.0+>, LibraryMake, Shell::Command
[35m01:15:13[0m :: ===> Searching for missing dependencies: File::Which, File::Find
[35m01:15:13[0m :: ===> Building: Digest::SHA256::Native:ver<0.04>
[35m01:15:13[0m :: ===> Building [OK] for Digest::SHA256::Native:ver<0.04>
[35m01:15:13[0m :: ===> Installing: Net::ZMQ:ver<0.8>
[35m01:15:13[0m :: ===> Installing: Log::Async:ver<0.0.8>
[35m01:15:13[0m :: ===> Installing: UUID:ver<1.0.0>
[35m01:15:13[0m :: ===> Installing: Digest:ver<0.27.4>
[35m01:15:13[0m :: ===> Installing: Digest::HMAC:ver<1.0.5>:auth<zef:jjmerelo>
[35m01:15:13[0m :: ===> Installing: File::Which:ver<1.0.4>
[35m01:15:13[0m :: ===> Installing: File::Find:ver<0.1.1>
[35m01:15:13[0m :: ===> Installing: Shell::Command
[35m01:15:13[0m :: ===> Installing: LibraryMake:ver<1.0.0>
[35m01:15:13[0m :: ===> Installing: Digest::SHA256::Native:ver<0.04>
[35m01:15:15[0m :: ===> Testing: Jupyter::Kernel:ver<0.0.20>
[35m01:15:49[0m :: [Jupyter::Kernel] Testing with plugin: Zef::Service::Shell::prove+{<anon|1>}
[35m01:15:49[0m :: [Jupyter::Kernel] t/01-basic.t .........
[35m01:15:49[0m :: [Jupyter::Kernel] 1..1
[35m01:15:49[0m :: [Jupyter::Kernel] ok 1 - Jupyter::Kernel module can be use-d ok
[35m01:15:49[0m :: [Jupyter::Kernel] ok
[35m01:15:49[0m :: [Jupyter::Kernel] t/02-sandbox.t .......
[35m01:15:49[0m :: [Jupyter::Kernel] 1..54
[35m01:15:49[0m :: [Jupyter::Kernel] Welcome to Rakudo™ v2022.07.
[35m01:15:49[0m :: [Jupyter::Kernel] Implementing the Raku® Programming Language v6.d.
[35m01:15:49[0m :: [Jupyter::Kernel] Built on MoarVM version 2022.07.
[35m01:15:49[0m :: [Jupyter::Kernel] ok 1 - make a new sandbox
[35m01:15:49[0m :: [Jupyter::Kernel] ok 2 - simple eval
[35m01:15:49[0m :: [Jupyter::Kernel] ok 3 - stringify
[35m01:15:49[0m :: [Jupyter::Kernel] ok 4 - made a var
[35m01:15:49[0m :: [Jupyter::Kernel] ok 5 - saved state
[35m01:15:49[0m :: [Jupyter::Kernel] ok 6 - no output, sent to stdout
[35m01:15:49[0m :: [Jupyter::Kernel] ok 7 - right value on stdout
[35m01:15:49[0m :: [Jupyter::Kernel] ok 8 - not incomplete
[35m01:15:49[0m :: [Jupyter::Kernel] ok 9 - right mime-type on stdout
[35m01:15:49[0m :: [Jupyter::Kernel] ok 10 - no output, sent to stderr
[35m01:15:49[0m :: [Jupyter::Kernel] ok 11 - correct value on stderr
[35m01:15:49[0m :: [Jupyter::Kernel] ok 12 - caught exception
[35m01:15:49[0m :: [Jupyter::Kernel] ok 13 - error message
[35m01:15:49[0m :: [Jupyter::Kernel] ok 14 - error message somewhat useful
[35m01:15:49[0m :: [Jupyter::Kernel] ok 15 - exception type
[35m01:15:49[0m :: [Jupyter::Kernel] ok 16 - identified incomplete input
[35m01:15:49[0m :: [Jupyter::Kernel] ok 17 - made an array
[35m01:15:49[0m :: [Jupyter::Kernel] ok 18 - array
[35m01:15:49[0m :: [Jupyter::Kernel] ok 19 - bound an array
[35m01:15:49[0m :: [Jupyter::Kernel] ok 20 - bound array
[35m01:15:49[0m :: [Jupyter::Kernel] ok 21 - mime type
[35m01:15:49[0m :: [Jupyter::Kernel] ok 22 - generated svg on stdout
[35m01:15:49[0m :: [Jupyter::Kernel] ok 23 - svg mime type on stdout
[35m01:15:49[0m :: [Jupyter::Kernel] ok 24 - generated svg output
[35m01:15:49[0m :: [Jupyter::Kernel] ok 25 - svg output mime type
[35m01:15:49[0m :: [Jupyter::Kernel] ok 26 - Any works
[35m01:15:49[0m :: [Jupyter::Kernel] ok 27 - Die trapped
[35m01:15:49[0m :: [Jupyter::Kernel] ok 28 - trapped sub call that died
[35m01:15:49[0m :: [Jupyter::Kernel] ok 29 - store eval in Out[1]
[35m01:15:49[0m :: [Jupyter::Kernel] ok 30 - get Out[1]
[35m01:15:49[0m :: [Jupyter::Kernel] ok 31 - get _2
[35m01:15:49[0m :: [Jupyter::Kernel] ok 32 - get _
[35m01:15:49[0m :: [Jupyter::Kernel] ok 33 - two statements
[35m01:15:49[0m :: [Jupyter::Kernel] ok 34 - two statements
[35m01:15:49[0m :: [Jupyter::Kernel] ok 35 - saved the right thing
[35m01:15:49[0m :: [Jupyter::Kernel] ok 36 - used _ in an expression
[35m01:15:49[0m :: [Jupyter::Kernel] ok 37 - class decl
[35m01:15:49[0m :: [Jupyter::Kernel] ok 38 - class decl
[35m01:15:49[0m :: [Jupyter::Kernel] ok 39 - no-persist a class
[35m01:15:49[0m :: [Jupyter::Kernel] ok 40 - Produced output when ending with a comment
[35m01:15:49[0m :: [Jupyter::Kernel] ok 41 - got right output when ending with a comment
[35m01:15:49[0m :: [Jupyter::Kernel] ok 42 - still here
[35m01:15:49[0m :: [Jupyter::Kernel] ok 43 - Any becomes Nil
[35m01:15:49[0m :: [Jupyter::Kernel] ok 44 - Nil becomes Nil
[35m01:15:49[0m :: [Jupyter::Kernel] ok 45 - say becomes Nil
[35m01:15:49[0m :: [Jupyter::Kernel] ok 46 - Output from a type (undefined)
[35m01:15:49[0m :: [Jupyter::Kernel] ok 47 - No output for multiple say's
[35m01:15:49[0m :: [Jupyter::Kernel] ok 48 - right stdout for multiple say's
[35m01:15:49[0m :: [Jupyter::Kernel] ok 49 - survived exception
[35m01:15:49[0m :: [Jupyter::Kernel] ok 50 - trapped 1/0 error
[35m01:15:49[0m :: [Jupyter::Kernel] ok 51 - Operator: test-op
[35m01:15:49[0m :: [Jupyter::Kernel] ok 52 - Operator: test-op
[35m01:15:49[0m :: [Jupyter::Kernel] ok 53 - Slang: use
[35m01:15:49[0m :: [Jupyter::Kernel] ok 54 - Slang: persistance
[35m01:15:49[0m :: [Jupyter::Kernel] ok
[35m01:15:49[0m :: [Jupyter::Kernel] Cannot locate native library 'libzmq.so.5': libzmq.so.5: cannot open shared object file: No such file or directory
[35m01:15:49[0m :: [Jupyter::Kernel] in method setup at /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.07-01-linux-x86_64-gcc/share/perl6/core/sources/A37F26876B58371B70EDD889AD69F064C90AC2C6 (NativeCall) line 319
[35m01:15:49[0m :: [Jupyter::Kernel] in method setup at /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.07-01-linux-x86_64-gcc/share/perl6/core/sources/A37F26876B58371B70EDD889AD69F064C90AC2C6 (NativeCall) line 366
[35m01:15:49[0m :: [Jupyter::Kernel] in sub raku-nativecall at /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.07-01-linux-x86_64-gcc/share/perl6/core/sources/A153F63283BF744FD66BF7212910E5F389384F6E (NativeCall::Dispatcher) line 46
[35m01:15:49[0m :: [Jupyter::Kernel] in method new at /home/worker/.raku/sources/FC1DE5470FF5B7D8A301F6A4F740D2AB33836E50 (Net::ZMQ4::Context) line 24
[35m01:15:49[0m :: [Jupyter::Kernel] in method setup at /var/.sparrowdo/env/main/.sparrowdo/source/lib/Jupyter/Kernel/Service.rakumod (Jupyter::Kernel::Service) line 28
[35m01:15:49[0m :: [Jupyter::Kernel] in block <unit> at t/03-service.t line 29
[35m01:15:49[0m :: [Jupyter::Kernel] t/03-service.t .......
[35m01:15:49[0m :: [Jupyter::Kernel] 1..5
[35m01:15:49[0m :: [Jupyter::Kernel] # You planned 5 tests, but ran 0
[35m01:15:49[0m :: [Jupyter::Kernel] Dubious, test returned 255 (wstat 65280, 0xff00)
[35m01:15:49[0m :: [Jupyter::Kernel] Failed 5/5 subtests
[35m01:15:49[0m :: [Jupyter::Kernel] t/04-completions.t ... skipped: Set P6_JUPYTER_TEST_AUTOCOMPLETE to run these
[35m01:15:49[0m :: [Jupyter::Kernel] # Completion: bare word
[35m01:15:49[0m :: [Jupyter::Kernel] # Completion: named parameter
[35m01:15:49[0m :: [Jupyter::Kernel] # Completion: named parameter
[35m01:15:49[0m :: [Jupyter::Kernel] # Completion: named parameter
[35m01:15:49[0m :: [Jupyter::Kernel] # Completion: named parameter
[35m01:15:49[0m :: [Jupyter::Kernel] # Completion: bare word
[35m01:15:49[0m :: [Jupyter::Kernel] # Completion: bare word
[35m01:15:49[0m :: [Jupyter::Kernel] # Completion: bare word
[35m01:15:49[0m :: [Jupyter::Kernel] # Completion: bare word
[35m01:15:49[0m :: [Jupyter::Kernel] t/05-autocomplete.t ..
[35m01:15:49[0m :: [Jupyter::Kernel] ok 1 - print
[35m01:15:49[0m :: [Jupyter::Kernel] ok 2 - found set ops
[35m01:15:49[0m :: [Jupyter::Kernel] ok 3 - found set ops in the middle
[35m01:15:49[0m :: [Jupyter::Kernel] ok 4 - right position
[35m01:15:49[0m :: [Jupyter::Kernel] ok 5 - found set ops
[35m01:15:49[0m :: [Jupyter::Kernel] ok 6 - got some exponents
[35m01:15:49[0m :: [Jupyter::Kernel] ok 7 - multiplication
[35m01:15:49[0m :: [Jupyter::Kernel] ok 8 - less than
[35m01:15:49[0m :: [Jupyter::Kernel] ok 9 - got some atomic ops
[35m01:15:49[0m :: [Jupyter::Kernel] ok 10 - atomic ops contains ⚛= ⚛
[35m01:15:49[0m :: [Jupyter::Kernel] ok 11 - got some beer
[35m01:15:49[0m :: [Jupyter::Kernel] ok 12 - beer contains🍺 and 🍻
[35m01:15:49[0m :: [Jupyter::Kernel] ok 13 - got right start
[35m01:15:49[0m :: [Jupyter::Kernel] ok 14 - got right end
[35m01:15:49[0m :: [Jupyter::Kernel] ok 15 - 30 or fewer results
[35m01:15:49[0m :: [Jupyter::Kernel] ok 16 - found less-than
[35m01:15:49[0m :: [Jupyter::Kernel] ok 17 - found ≤
[35m01:15:49[0m :: [Jupyter::Kernel] ok 18 - found π
[35m01:15:49[0m :: [Jupyter::Kernel] ok 19 - found π
[35m01:15:49[0m :: [Jupyter::Kernel] ok 20 - found τ
[35m01:15:49[0m :: [Jupyter::Kernel] ok 21 - found ∞
[35m01:15:49[0m :: [Jupyter::Kernel] 1..21
[35m01:15:49[0m :: [Jupyter::Kernel] ok
[35m01:15:49[0m :: [Jupyter::Kernel] t/06-magic.t .........
[35m01:15:49[0m :: [Jupyter::Kernel] 1..56
[35m01:15:49[0m :: [Jupyter::Kernel] ok 1 - no magic
[35m01:15:49[0m :: [Jupyter::Kernel] ok 2 - preprocess recognized %% javascript
[35m01:15:49[0m :: [Jupyter::Kernel] ok 3 - find-magic removed magic line
[35m01:15:49[0m :: [Jupyter::Kernel] ok 4 - js magic set the mime type
[35m01:15:49[0m :: [Jupyter::Kernel] ok 5 - find-magic recognized %% latex
[35m01:15:49[0m :: [Jupyter::Kernel] ok 6 - find-magic removed magic line
[35m01:15:49[0m :: [Jupyter::Kernel] ok 7 - preprocess did not return a result
[35m01:15:49[0m :: [Jupyter::Kernel] ok 8 - preprocess did not change code
[35m01:15:49[0m :: [Jupyter::Kernel] ok 9 - latex magic set the output mime type
[35m01:15:49[0m :: [Jupyter::Kernel] ok 10 - find-magic recognized %% latex(equation*)
[35m01:15:49[0m :: [Jupyter::Kernel] ok 11 - find-magic removed magic line
[35m01:15:49[0m :: [Jupyter::Kernel] ok 12 - preprocess did not return a result
[35m01:15:49[0m :: [Jupyter::Kernel] ok 13 - preprocess did not change code
[35m01:15:49[0m :: [Jupyter::Kernel] ok 14 - latex magic set the output mime type
[35m01:15:49[0m :: [Jupyter::Kernel] ok 15 - latex magic enclosed the output
[35m01:15:49[0m :: [Jupyter::Kernel] ok 16 - find-magic recognized %% html
[35m01:15:49[0m :: [Jupyter::Kernel] ok 17 - find-magic removed magic line
[35m01:15:49[0m :: [Jupyter::Kernel] ok 18 - preprocess did not return a result
[35m01:15:49[0m :: [Jupyter::Kernel] ok 19 - html magic set the output mime type
[35m01:15:49[0m :: [Jupyter::Kernel] ok 20 - html unchanged
[35m01:15:49[0m :: [Jupyter::Kernel] ok 21 - stdout is text/plain
[35m01:15:49[0m :: [Jupyter::Kernel] ok 22 - stdout worked
[35m01:15:49[0m :: [Jupyter::Kernel] ok 23 - find-magic recognized %% html
[35m01:15:49[0m :: [Jupyter::Kernel] ok 24 - find-magic removed magic line
[35m01:15:49[0m :: [Jupyter::Kernel] ok 25 - preprocess did not return a result
[35m01:15:49[0m :: [Jupyter::Kernel] ok 26 - html magic did not set output mime type
[35m01:15:49[0m :: [Jupyter::Kernel] ok 27 - html unchanged
[35m01:15:49[0m :: [Jupyter::Kernel] ok 28 - stdout is text/html
[35m01:15:49[0m :: [Jupyter::Kernel] ok 29 - stdout worked
[35m01:15:49[0m :: [Jupyter::Kernel] ok 30 - found magic for mime
[35m01:15:49[0m :: [Jupyter::Kernel] ok 31 - right magic
[35m01:15:49[0m :: [Jupyter::Kernel] ok 32 - preprocess does not return true
[35m01:15:49[0m :: [Jupyter::Kernel] ok 33 - postprocess returned a result
[35m01:15:49[0m :: [Jupyter::Kernel] ok 34 - set output mime type
[35m01:15:49[0m :: [Jupyter::Kernel] ok 35 - set stdout mime type
[35m01:15:49[0m :: [Jupyter::Kernel] ok 36 - generated html output
[35m01:15:49[0m :: [Jupyter::Kernel] ok 37 - but latex on stdout
[35m01:15:49[0m :: [Jupyter::Kernel] ok 38 - generated latex output
[35m01:15:49[0m :: [Jupyter::Kernel] ok 39 - but html on stdout
[35m01:15:49[0m :: [Jupyter::Kernel] ok 40 - generated latex output
[35m01:15:49[0m :: [Jupyter::Kernel] ok 41 - but html on stdout
[35m01:15:49[0m :: [Jupyter::Kernel] ok 42 - found bash magic
[35m01:15:49[0m :: [Jupyter::Kernel] ok 43 - got output
[35m01:15:49[0m :: [Jupyter::Kernel] ok 44 - got right mime type
[35m01:15:49[0m :: [Jupyter::Kernel] ok 45 - found bash magic
[35m01:15:49[0m :: [Jupyter::Kernel] ok 46 - no output
[35m01:15:49[0m :: [Jupyter::Kernel] ok 47 - got right mime type
[35m01:15:49[0m :: [Jupyter::Kernel] ok 48 - errors on stdout
[35m01:15:58[0m :: [Jupyter::Kernel] ok 49 - found run magic
[35m01:15:58[0m :: [Jupyter::Kernel] ok 50 - no return value from preprocess
[35m01:15:58[0m :: [Jupyter::Kernel] ok 51 - Cell now has code
[35m01:15:58[0m :: [Jupyter::Kernel] ok 52 - found run magic
[35m01:15:58[0m :: [Jupyter::Kernel] ok 53 - no return value from preprocess
[35m01:15:58[0m :: [Jupyter::Kernel] ok 54 - Cell now has more code
[35m01:15:58[0m :: [Jupyter::Kernel] ok 55 - Handled missing file
[35m01:15:58[0m :: [Jupyter::Kernel] ok 56 - error message
[35m01:15:58[0m :: [Jupyter::Kernel] ok
[35m01:15:58[0m :: [Jupyter::Kernel] t/07-comms.t .........
[35m01:15:58[0m :: [Jupyter::Kernel] 1..11
[35m01:15:58[0m :: [Jupyter::Kernel] ok 1 - made comm manager
[35m01:15:58[0m :: [Jupyter::Kernel] ok 2 - made a comm
[35m01:15:58[0m :: [Jupyter::Kernel] ok 3 - received message back from comm
[35m01:15:58[0m :: [Jupyter::Kernel] ok 4 - made a comm
[35m01:15:58[0m :: [Jupyter::Kernel] ok 5 - comm with no data
[35m01:15:58[0m :: [Jupyter::Kernel] ok 6 - made a comm
[35m01:15:58[0m :: [Jupyter::Kernel] ok 7 - received message back from comm
[35m01:15:58[0m :: [Jupyter::Kernel] ok 8 - List comms
[35m01:15:58[0m :: [Jupyter::Kernel] ok 9 - 3 ids
[35m01:15:58[0m :: [Jupyter::Kernel] ok 10 - made a comm
[35m01:15:58[0m :: [Jupyter::Kernel] ok 11 - in and out for comm
[35m01:15:58[0m :: [Jupyter::Kernel] ok
[35m01:15:58[0m :: [Jupyter::Kernel] t/08-paths.t .........
[35m01:15:58[0m :: [Jupyter::Kernel] 1..1
[35m01:15:58[0m :: [Jupyter::Kernel] ok 1 - text matches /:i jupyter/
[35m01:15:58[0m :: [Jupyter::Kernel] ok
[35m01:15:58[0m :: [Jupyter::Kernel] # opening history file /tmp/history-test.json
[35m01:15:58[0m :: [Jupyter::Kernel] t/09-history.t .......
[35m01:15:58[0m :: [Jupyter::Kernel] 1..7
[35m01:15:58[0m :: [Jupyter::Kernel] ok 1 - made a history object
[35m01:15:58[0m :: [Jupyter::Kernel] ok 2 - init
[35m01:15:58[0m :: [Jupyter::Kernel] ok 3 - nothing there yet
[35m01:15:58[0m :: [Jupyter::Kernel] ok 4 - append
[35m01:15:58[0m :: [Jupyter::Kernel] ok 5 - read the history
[35m01:15:58[0m :: [Jupyter::Kernel] ok 6 - append
[35m01:15:58[0m :: [Jupyter::Kernel] ok 7 - read the history
[35m01:15:58[0m :: [Jupyter::Kernel] ok
[35m01:15:58[0m :: [Jupyter::Kernel] t/20-end-to-end.t .... skipped: Set P6_JUPYTER_TEST_END_TO_END to run these
[35m01:15:58[0m :: [Jupyter::Kernel] t/99-meta.t ..........
[35m01:15:58[0m :: [Jupyter::Kernel] 1..1
[35m01:15:58[0m :: [Jupyter::Kernel] ok 1 - # SKIP Skipping author test
[35m01:15:58[0m :: [Jupyter::Kernel] ok
[35m01:15:58[0m :: [Jupyter::Kernel] Test Summary Report
[35m01:15:58[0m :: [Jupyter::Kernel] -------------------
[35m01:15:58[0m :: [Jupyter::Kernel] t/03-service.t (Wstat: 65280 Tests: 0 Failed: 0)
[35m01:15:58[0m :: [Jupyter::Kernel] Non-zero exit status: 255
[35m01:15:58[0m :: [Jupyter::Kernel] Parse errors: Bad plan. You planned 5 tests but ran 0.
[35m01:15:58[0m :: [Jupyter::Kernel] Files=11, Tests=152, 43 wallclock secs ( 0.10 usr 0.05 sys + 65.85 cusr 5.30 csys = 71.30 CPU)
[35m01:15:58[0m :: [Jupyter::Kernel] Result: FAIL
[35m01:15:58[0m :: ===> Testing [FAIL]: Jupyter::Kernel:ver<0.0.20>
[1;36m[task stderr][0m
[35m01:15:58[0m :: Aborting due to test failure: Jupyter::Kernel:ver<0.0.20> (use --force-test to override)
[1;36m[task run: task.bash - tasks/multi-versions][0m
[1;36m[dump code: task.bash][0m
[1] set -e
[2] echo "Linux version: $os"
[3] curl -sL https://rakudo.org/dl/rakudo/rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz \
[4] -o rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz
[5] tar -xzf rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz
[6] eval "$(rakudo-moar-$version-01-linux-x86_64-gcc/scripts/set-env.sh)"
[7] which raku
[8] which zef
[9] raku --version
[10] zef --version
[11]
[12] cd source/
[13] zef install . --deps-only --test-depends --build-depends --/test -to=home
[14] /usr/bin/time -f "%E real,%U user,%S sys | CPU Percentage: %P" -o "${cache_root_dir}/${version}_time" \
[15] zef test --debug . && touch "${cache_root_dir}/${version}_ok"
[16]
[1;36m[task stdout][0m
[35m01:15:58[0m :: Linux version: debian
[35m01:15:59[0m :: Adding Rakudo to PATH
[35m01:15:59[0m :: =======================
[35m01:15:59[0m ::
[35m01:15:59[0m :: Paths successfully added.
[35m01:15:59[0m ::
[35m01:15:59[0m :: ================================================================================
[35m01:15:59[0m :: ========= __ __
[35m01:15:59[0m :: ||_|_|| ============================= ( \,/ )
[35m01:15:59[0m :: || # || Welcome to the Raku Console \_ O _/
[35m01:15:59[0m :: || # || ============================= (_/ \_)
[35m01:15:59[0m ::
[35m01:15:59[0m :: This console has all the tools available you need to get started using Raku.
[35m01:15:59[0m ::
[35m01:15:59[0m :: Rakudo provides an interactive command line interpreter (a so called Read Eval
[35m01:15:59[0m :: Print Loop, REPL for short) you can use to quickly try out pieces of Raku code.
[35m01:15:59[0m :: Start it by typing:
[35m01:15:59[0m ::
[35m01:15:59[0m :: raku
[35m01:15:59[0m ::
[35m01:15:59[0m :: If you already have a Raku program in a file, you can run it by typing:
[35m01:15:59[0m ::
[35m01:15:59[0m :: raku path/to/my/program.raku
[35m01:15:59[0m ::
[35m01:15:59[0m :: To install additional modules you can use the Zef module manager:
[35m01:15:59[0m ::
[35m01:15:59[0m :: zef install Some::Module
[35m01:15:59[0m ::
[35m01:15:59[0m :: https://rakudo.org/ - The home of this implementation of Raku.
[35m01:15:59[0m :: https://raku.land/ - Go here to browse for Raku modules.
[35m01:15:59[0m :: https://docs.raku.org/ - The Raku documentation.
[35m01:15:59[0m :: https://web.libera.chat/#raku - The Raku user chat. Talk to us!
[35m01:15:59[0m ::
[35m01:15:59[0m :: Happy hacking!
[35m01:15:59[0m ::
[35m01:15:59[0m :: ================================================================================
[35m01:15:59[0m ::
[35m01:15:59[0m :: /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.12-01-linux-x86_64-gcc/bin/raku
[35m01:15:59[0m :: /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.12-01-linux-x86_64-gcc/share/perl6/site/bin/zef
[35m01:15:59[0m :: Welcome to Rakudo™ v2022.12.
[35m01:15:59[0m :: Implementing the Raku® Programming Language v6.d.
[35m01:15:59[0m :: Built on MoarVM version 2022.12.
[35m01:16:01[0m :: v0.14.5
[35m01:16:09[0m :: ===> Testing: Jupyter::Kernel:ver<0.0.20>
[35m01:17:05[0m :: [Jupyter::Kernel] Testing with plugin: Zef::Service::Shell::prove+{<anon|1>}
[35m01:17:05[0m :: [Jupyter::Kernel] t/01-basic.t .........
[35m01:17:05[0m :: [Jupyter::Kernel] 1..1
[35m01:17:05[0m :: [Jupyter::Kernel] ok 1 - Jupyter::Kernel module can be use-d ok
[35m01:17:05[0m :: [Jupyter::Kernel] ok
[35m01:17:05[0m :: [Jupyter::Kernel] t/02-sandbox.t .......
[35m01:17:05[0m :: [Jupyter::Kernel] 1..54
[35m01:17:05[0m :: [Jupyter::Kernel] Welcome to Rakudo™ v2022.12.
[35m01:17:05[0m :: [Jupyter::Kernel] Implementing the Raku® Programming Language v6.d.
[35m01:17:05[0m :: [Jupyter::Kernel] Built on MoarVM version 2022.12.
[35m01:17:05[0m :: [Jupyter::Kernel] ok 1 - make a new sandbox
[35m01:17:05[0m :: [Jupyter::Kernel] ok 2 - simple eval
[35m01:17:05[0m :: [Jupyter::Kernel] ok 3 - stringify
[35m01:17:05[0m :: [Jupyter::Kernel] ok 4 - made a var
[35m01:17:05[0m :: [Jupyter::Kernel] ok 5 - saved state
[35m01:17:05[0m :: [Jupyter::Kernel] ok 6 - no output, sent to stdout
[35m01:17:05[0m :: [Jupyter::Kernel] ok 7 - right value on stdout
[35m01:17:05[0m :: [Jupyter::Kernel] ok 8 - not incomplete
[35m01:17:05[0m :: [Jupyter::Kernel] ok 9 - right mime-type on stdout
[35m01:17:05[0m :: [Jupyter::Kernel] ok 10 - no output, sent to stderr
[35m01:17:05[0m :: [Jupyter::Kernel] ok 11 - correct value on stderr
[35m01:17:05[0m :: [Jupyter::Kernel] ok 12 - caught exception
[35m01:17:05[0m :: [Jupyter::Kernel] ok 13 - error message
[35m01:17:05[0m :: [Jupyter::Kernel] ok 14 - error message somewhat useful
[35m01:17:05[0m :: [Jupyter::Kernel] ok 15 - exception type
[35m01:17:05[0m :: [Jupyter::Kernel] ok 16 - identified incomplete input
[35m01:17:05[0m :: [Jupyter::Kernel] ok 17 - made an array
[35m01:17:05[0m :: [Jupyter::Kernel] ok 18 - array
[35m01:17:05[0m :: [Jupyter::Kernel] ok 19 - bound an array
[35m01:17:05[0m :: [Jupyter::Kernel] ok 20 - bound array
[35m01:17:05[0m :: [Jupyter::Kernel] ok 21 - mime type
[35m01:17:05[0m :: [Jupyter::Kernel] ok 22 - generated svg on stdout
[35m01:17:05[0m :: [Jupyter::Kernel] ok 23 - svg mime type on stdout
[35m01:17:05[0m :: [Jupyter::Kernel] ok 24 - generated svg output
[35m01:17:05[0m :: [Jupyter::Kernel] ok 25 - svg output mime type
[35m01:17:05[0m :: [Jupyter::Kernel] ok 26 - Any works
[35m01:17:05[0m :: [Jupyter::Kernel] ok 27 - Die trapped
[35m01:17:05[0m :: [Jupyter::Kernel] ok 28 - trapped sub call that died
[35m01:17:05[0m :: [Jupyter::Kernel] ok 29 - store eval in Out[1]
[35m01:17:05[0m :: [Jupyter::Kernel] ok 30 - get Out[1]
[35m01:17:05[0m :: [Jupyter::Kernel] ok 31 - get _2
[35m01:17:05[0m :: [Jupyter::Kernel] ok 32 - get _
[35m01:17:05[0m :: [Jupyter::Kernel] ok 33 - two statements
[35m01:17:05[0m :: [Jupyter::Kernel] ok 34 - two statements
[35m01:17:05[0m :: [Jupyter::Kernel] ok 35 - saved the right thing
[35m01:17:05[0m :: [Jupyter::Kernel] ok 36 - used _ in an expression
[35m01:17:05[0m :: [Jupyter::Kernel] ok 37 - class decl
[35m01:17:05[0m :: [Jupyter::Kernel] ok 38 - class decl
[35m01:17:05[0m :: [Jupyter::Kernel] ok 39 - no-persist a class
[35m01:17:05[0m :: [Jupyter::Kernel] ok 40 - Produced output when ending with a comment
[35m01:17:05[0m :: [Jupyter::Kernel] ok 41 - got right output when ending with a comment
[35m01:17:05[0m :: [Jupyter::Kernel] ok 42 - still here
[35m01:17:05[0m :: [Jupyter::Kernel] ok 43 - Any becomes Nil
[35m01:17:05[0m :: [Jupyter::Kernel] ok 44 - Nil becomes Nil
[35m01:17:05[0m :: [Jupyter::Kernel] ok 45 - say becomes Nil
[35m01:17:05[0m :: [Jupyter::Kernel] ok 46 - Output from a type (undefined)
[35m01:17:05[0m :: [Jupyter::Kernel] ok 47 - No output for multiple say's
[35m01:17:05[0m :: [Jupyter::Kernel] ok 48 - right stdout for multiple say's
[35m01:17:05[0m :: [Jupyter::Kernel] ok 49 - survived exception
[35m01:17:05[0m :: [Jupyter::Kernel] ok 50 - trapped 1/0 error
[35m01:17:05[0m :: [Jupyter::Kernel] ok 51 - Operator: test-op
[35m01:17:05[0m :: [Jupyter::Kernel] ok 52 - Operator: test-op
[35m01:17:05[0m :: [Jupyter::Kernel] ok 53 - Slang: use
[35m01:17:05[0m :: [Jupyter::Kernel] ok 54 - Slang: persistance
[35m01:17:05[0m :: [Jupyter::Kernel] ok
[35m01:17:05[0m :: [Jupyter::Kernel] Cannot locate native library 'libzmq.so.5': libzmq.so.5: cannot open shared object file: No such file or directory
[35m01:17:05[0m :: [Jupyter::Kernel] in method setup at /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.12-01-linux-x86_64-gcc/share/perl6/core/sources/7B8DEDA2F7DE2BC68AFBCDDDCCD18DA2262416F3 (NativeCall) line 319
[35m01:17:05[0m :: [Jupyter::Kernel] in method setup at /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.12-01-linux-x86_64-gcc/share/perl6/core/sources/7B8DEDA2F7DE2BC68AFBCDDDCCD18DA2262416F3 (NativeCall) line 366
[35m01:17:05[0m :: [Jupyter::Kernel] in sub raku-nativecall at /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.12-01-linux-x86_64-gcc/share/perl6/core/sources/71DDCBA5C5EBFAE6A17BAC4C253AA782EA5EBFD3 (NativeCall::Dispatcher) line 46
[35m01:17:05[0m :: [Jupyter::Kernel] in method new at /home/worker/.raku/sources/FC1DE5470FF5B7D8A301F6A4F740D2AB33836E50 (Net::ZMQ4::Context) line 24
[35m01:17:05[0m :: [Jupyter::Kernel] in method setup at /var/.sparrowdo/env/main/.sparrowdo/source/lib/Jupyter/Kernel/Service.rakumod (Jupyter::Kernel::Service) line 28
[35m01:17:05[0m :: [Jupyter::Kernel] in block <unit> at t/03-service.t line 29
[35m01:17:05[0m :: [Jupyter::Kernel] t/03-service.t .......
[35m01:17:05[0m :: [Jupyter::Kernel] 1..5
[35m01:17:05[0m :: [Jupyter::Kernel] # You planned 5 tests, but ran 0
[35m01:17:05[0m :: [Jupyter::Kernel] Dubious, test returned 255 (wstat 65280, 0xff00)
[35m01:17:05[0m :: [Jupyter::Kernel] Failed 5/5 subtests
[35m01:17:05[0m :: [Jupyter::Kernel] t/04-completions.t ... skipped: Set P6_JUPYTER_TEST_AUTOCOMPLETE to run these
[35m01:17:05[0m :: [Jupyter::Kernel] # Completion: bare word
[35m01:17:05[0m :: [Jupyter::Kernel] # Completion: named parameter
[35m01:17:05[0m :: [Jupyter::Kernel] # Completion: named parameter
[35m01:17:05[0m :: [Jupyter::Kernel] # Completion: named parameter
[35m01:17:05[0m :: [Jupyter::Kernel] # Completion: named parameter
[35m01:17:05[0m :: [Jupyter::Kernel] # Completion: bare word
[35m01:17:05[0m :: [Jupyter::Kernel] # Completion: bare word
[35m01:17:05[0m :: [Jupyter::Kernel] # Completion: bare word
[35m01:17:05[0m :: [Jupyter::Kernel] # Completion: bare word
[35m01:17:05[0m :: [Jupyter::Kernel] t/05-autocomplete.t ..
[35m01:17:05[0m :: [Jupyter::Kernel] ok 1 - print
[35m01:17:05[0m :: [Jupyter::Kernel] ok 2 - found set ops
[35m01:17:05[0m :: [Jupyter::Kernel] ok 3 - found set ops in the middle
[35m01:17:05[0m :: [Jupyter::Kernel] ok 4 - right position
[35m01:17:05[0m :: [Jupyter::Kernel] ok 5 - found set ops
[35m01:17:05[0m :: [Jupyter::Kernel] ok 6 - got some exponents
[35m01:17:05[0m :: [Jupyter::Kernel] ok 7 - multiplication
[35m01:17:05[0m :: [Jupyter::Kernel] ok 8 - less than
[35m01:17:05[0m :: [Jupyter::Kernel] ok 9 - got some atomic ops
[35m01:17:05[0m :: [Jupyter::Kernel] ok 10 - atomic ops contains ⚛= ⚛
[35m01:17:05[0m :: [Jupyter::Kernel] ok 11 - got some beer
[35m01:17:05[0m :: [Jupyter::Kernel] ok 12 - beer contains🍺 and 🍻
[35m01:17:05[0m :: [Jupyter::Kernel] ok 13 - got right start
[35m01:17:05[0m :: [Jupyter::Kernel] ok 14 - got right end
[35m01:17:05[0m :: [Jupyter::Kernel] ok 15 - 30 or fewer results
[35m01:17:05[0m :: [Jupyter::Kernel] ok 16 - found less-than
[35m01:17:05[0m :: [Jupyter::Kernel] ok 17 - found ≤
[35m01:17:05[0m :: [Jupyter::Kernel] ok 18 - found π
[35m01:17:05[0m :: [Jupyter::Kernel] ok 19 - found π
[35m01:17:05[0m :: [Jupyter::Kernel] ok 20 - found τ
[35m01:17:05[0m :: [Jupyter::Kernel] ok 21 - found ∞
[35m01:17:05[0m :: [Jupyter::Kernel] 1..21
[35m01:17:05[0m :: [Jupyter::Kernel] ok
[35m01:17:05[0m :: [Jupyter::Kernel] t/06-magic.t .........
[35m01:17:05[0m :: [Jupyter::Kernel] 1..56
[35m01:17:05[0m :: [Jupyter::Kernel] ok 1 - no magic
[35m01:17:06[0m :: [Jupyter::Kernel] ok 2 - preprocess recognized %% javascript
[35m01:17:06[0m :: [Jupyter::Kernel] ok 3 - find-magic removed magic line
[35m01:17:06[0m :: [Jupyter::Kernel] ok 4 - js magic set the mime type
[35m01:17:06[0m :: [Jupyter::Kernel] ok 5 - find-magic recognized %% latex
[35m01:17:06[0m :: [Jupyter::Kernel] ok 6 - find-magic removed magic line
[35m01:17:06[0m :: [Jupyter::Kernel] ok 7 - preprocess did not return a result
[35m01:17:06[0m :: [Jupyter::Kernel] ok 8 - preprocess did not change code
[35m01:17:06[0m :: [Jupyter::Kernel] ok 9 - latex magic set the output mime type
[35m01:17:06[0m :: [Jupyter::Kernel] ok 10 - find-magic recognized %% latex(equation*)
[35m01:17:06[0m :: [Jupyter::Kernel] ok 11 - find-magic removed magic line
[35m01:17:06[0m :: [Jupyter::Kernel] ok 12 - preprocess did not return a result
[35m01:17:06[0m :: [Jupyter::Kernel] ok 13 - preprocess did not change code
[35m01:17:06[0m :: [Jupyter::Kernel] ok 14 - latex magic set the output mime type
[35m01:17:06[0m :: [Jupyter::Kernel] ok 15 - latex magic enclosed the output
[35m01:17:06[0m :: [Jupyter::Kernel] ok 16 - find-magic recognized %% html
[35m01:17:06[0m :: [Jupyter::Kernel] ok 17 - find-magic removed magic line
[35m01:17:06[0m :: [Jupyter::Kernel] ok 18 - preprocess did not return a result
[35m01:17:06[0m :: [Jupyter::Kernel] ok 19 - html magic set the output mime type
[35m01:17:06[0m :: [Jupyter::Kernel] ok 20 - html unchanged
[35m01:17:06[0m :: [Jupyter::Kernel] ok 21 - stdout is text/plain
[35m01:17:06[0m :: [Jupyter::Kernel] ok 22 - stdout worked
[35m01:17:06[0m :: [Jupyter::Kernel] ok 23 - find-magic recognized %% html
[35m01:17:06[0m :: [Jupyter::Kernel] ok 24 - find-magic removed magic line
[35m01:17:06[0m :: [Jupyter::Kernel] ok 25 - preprocess did not return a result
[35m01:17:06[0m :: [Jupyter::Kernel] ok 26 - html magic did not set output mime type
[35m01:17:06[0m :: [Jupyter::Kernel] ok 27 - html unchanged
[35m01:17:06[0m :: [Jupyter::Kernel] ok 28 - stdout is text/html
[35m01:17:06[0m :: [Jupyter::Kernel] ok 29 - stdout worked
[35m01:17:06[0m :: [Jupyter::Kernel] ok 30 - found magic for mime
[35m01:17:06[0m :: [Jupyter::Kernel] ok 31 - right magic
[35m01:17:06[0m :: [Jupyter::Kernel] ok 32 - preprocess does not return true
[35m01:17:06[0m :: [Jupyter::Kernel] ok 33 - postprocess returned a result
[35m01:17:06[0m :: [Jupyter::Kernel] ok 34 - set output mime type
[35m01:17:06[0m :: [Jupyter::Kernel] ok 35 - set stdout mime type
[35m01:17:06[0m :: [Jupyter::Kernel] ok 36 - generated html output
[35m01:17:06[0m :: [Jupyter::Kernel] ok 37 - but latex on stdout
[35m01:17:06[0m :: [Jupyter::Kernel] ok 38 - generated latex output
[35m01:17:06[0m :: [Jupyter::Kernel] ok 39 - but html on stdout
[35m01:17:06[0m :: [Jupyter::Kernel] ok 40 - generated latex output
[35m01:17:06[0m :: [Jupyter::Kernel] ok 41 - but html on stdout
[35m01:17:06[0m :: [Jupyter::Kernel] ok 42 - found bash magic
[35m01:17:06[0m :: [Jupyter::Kernel] ok 43 - got output
[35m01:17:06[0m :: [Jupyter::Kernel] ok 44 - got right mime type
[35m01:17:06[0m :: [Jupyter::Kernel] ok 45 - found bash magic
[35m01:17:06[0m :: [Jupyter::Kernel] ok 46 - no output
[35m01:17:06[0m :: [Jupyter::Kernel] ok 47 - got right mime type
[35m01:17:06[0m :: [Jupyter::Kernel] ok 48 - errors on stdout
[35m01:17:14[0m :: [Jupyter::Kernel] ok 49 - found run magic
[35m01:17:14[0m :: [Jupyter::Kernel] ok 50 - no return value from preprocess
[35m01:17:14[0m :: [Jupyter::Kernel] ok 51 - Cell now has code
[35m01:17:14[0m :: [Jupyter::Kernel] ok 52 - found run magic
[35m01:17:14[0m :: [Jupyter::Kernel] ok 53 - no return value from preprocess
[35m01:17:14[0m :: [Jupyter::Kernel] ok 54 - Cell now has more code
[35m01:17:14[0m :: [Jupyter::Kernel] ok 55 - Handled missing file
[35m01:17:14[0m :: [Jupyter::Kernel] ok 56 - error message
[35m01:17:14[0m :: [Jupyter::Kernel] ok
[35m01:17:14[0m :: [Jupyter::Kernel] t/07-comms.t .........
[35m01:17:14[0m :: [Jupyter::Kernel] 1..11
[35m01:17:14[0m :: [Jupyter::Kernel] ok 1 - made comm manager
[35m01:17:14[0m :: [Jupyter::Kernel] ok 2 - made a comm
[35m01:17:14[0m :: [Jupyter::Kernel] ok 3 - received message back from comm
[35m01:17:14[0m :: [Jupyter::Kernel] ok 4 - made a comm
[35m01:17:14[0m :: [Jupyter::Kernel] ok 5 - comm with no data
[35m01:17:14[0m :: [Jupyter::Kernel] ok 6 - made a comm
[35m01:17:14[0m :: [Jupyter::Kernel] ok 7 - received message back from comm
[35m01:17:14[0m :: [Jupyter::Kernel] ok 8 - List comms
[35m01:17:14[0m :: [Jupyter::Kernel] ok 9 - 3 ids
[35m01:17:14[0m :: [Jupyter::Kernel] ok 10 - made a comm
[35m01:17:14[0m :: [Jupyter::Kernel] ok 11 - in and out for comm
[35m01:17:14[0m :: [Jupyter::Kernel] ok
[35m01:17:14[0m :: [Jupyter::Kernel] t/08-paths.t .........
[35m01:17:14[0m :: [Jupyter::Kernel] 1..1
[35m01:17:14[0m :: [Jupyter::Kernel] ok 1 - text matches /:i jupyter/
[35m01:17:14[0m :: [Jupyter::Kernel] ok
[35m01:17:14[0m :: [Jupyter::Kernel] # opening history file /tmp/history-test.json
[35m01:17:14[0m :: [Jupyter::Kernel] t/09-history.t .......
[35m01:17:14[0m :: [Jupyter::Kernel] 1..7
[35m01:17:14[0m :: [Jupyter::Kernel] ok 1 - made a history object
[35m01:17:14[0m :: [Jupyter::Kernel] ok 2 - init
[35m01:17:14[0m :: [Jupyter::Kernel] ok 3 - nothing there yet
[35m01:17:14[0m :: [Jupyter::Kernel] ok 4 - append
[35m01:17:14[0m :: [Jupyter::Kernel] ok 5 - read the history
[35m01:17:14[0m :: [Jupyter::Kernel] ok 6 - append
[35m01:17:14[0m :: [Jupyter::Kernel] ok 7 - read the history
[35m01:17:14[0m :: [Jupyter::Kernel] ok
[35m01:17:14[0m :: [Jupyter::Kernel] t/20-end-to-end.t .... skipped: Set P6_JUPYTER_TEST_END_TO_END to run these
[35m01:17:14[0m :: [Jupyter::Kernel] t/99-meta.t ..........
[35m01:17:14[0m :: [Jupyter::Kernel] 1..1
[35m01:17:14[0m :: [Jupyter::Kernel] ok 1 - # SKIP Skipping author test
[35m01:17:14[0m :: [Jupyter::Kernel] ok
[35m01:17:14[0m :: [Jupyter::Kernel] Test Summary Report
[35m01:17:14[0m :: [Jupyter::Kernel] -------------------
[35m01:17:14[0m :: [Jupyter::Kernel] t/03-service.t (Wstat: 65280 Tests: 0 Failed: 0)
[35m01:17:14[0m :: [Jupyter::Kernel] Non-zero exit status: 255
[35m01:17:14[0m :: [Jupyter::Kernel] Parse errors: Bad plan. You planned 5 tests but ran 0.
[35m01:17:14[0m :: [Jupyter::Kernel] Files=11, Tests=152, 64 wallclock secs ( 0.12 usr 0.02 sys + 98.09 cusr 8.24 csys = 106.47 CPU)
[35m01:17:14[0m :: [Jupyter::Kernel] Result: FAIL
[35m01:17:14[0m :: ===> Testing [FAIL]: Jupyter::Kernel:ver<0.0.20>
[1;36m[task stderr][0m
[35m01:17:14[0m :: All candidates are currently installed
[35m01:17:14[0m :: Aborting due to test failure: Jupyter::Kernel:ver<0.0.20> (use --force-test to override)
[1;36m[task run: task.raku - tasks/multi-versions][0m
[1;36m[dump code: task.raku][0m
[1] my @state;
[2] for config()<list><> -> $v {
[3] my $s = %( version => $v );
[4] if "{cache_root_dir()}/{$v}_ok".IO ~~ :e {
[5] $s<status> = "OK";
[6] } else {
[7] $s<status> = "FAIL";
[8] }
[9] if "{cache_root_dir()}/{$v}_time".IO ~~ :e {
[10] $s<time> = "{cache_root_dir()}/{$v}_time".IO.slurp();
[11] } else {
[12] $s<time> = "NA";
[13] }
[14] @state.push: $s;
[15] }
[16] update_state %( list => @state );
[17]
[1;36m[task stdout][0m
[35m01:12:40[0m :: [repository] - index updated from https://sparrowhub.io/repo/api/v1/index
run stage: run
[1;36m[task run: task.bash - tasks/install-deps][0m
[1;36m[dump code: task.bash][0m
[1] sudo apt-get install -y time
[2] zef install --/test Text::Table::Simple
[3]
[1;36m[task stdout][0m
[35m01:12:44[0m :: Reading package lists...
[35m01:12:45[0m :: Building dependency tree...
[35m01:12:45[0m :: Reading state information...
[35m01:12:45[0m :: The following NEW packages will be installed:
[35m01:12:45[0m :: time
[35m01:12:45[0m :: 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
[35m01:12:45[0m :: Need to get 50.8 kB of archives.
[35m01:12:45[0m :: After this operation, 132 kB of additional disk space will be used.
[35m01:12:45[0m :: Get:1 http://deb.debian.org/debian bullseye/main amd64 time amd64 1.9-0.1 [50.8 kB]
[35m01:12:46[0m :: Fetched 50.8 kB in 0s (1654 kB/s)
[35m01:12:46[0m :: Selecting previously unselected package time.
[35m01:12:46[0m :: (Reading database ...
[35m01:12:46[0m :: (Reading database ... 5%
[35m01:12:46[0m :: (Reading database ... 10%
[35m01:12:46[0m :: (Reading database ... 15%
[35m01:12:46[0m :: (Reading database ... 20%
[35m01:12:46[0m :: (Reading database ... 25%
[35m01:12:46[0m :: (Reading database ... 30%
[35m01:12:46[0m :: (Reading database ... 35%
[35m01:12:46[0m :: (Reading database ... 40%
[35m01:12:46[0m :: (Reading database ... 45%
[35m01:12:46[0m :: (Reading database ... 50%
[35m01:12:46[0m :: (Reading database ... 55%
[35m01:12:46[0m :: (Reading database ... 60%
[35m01:12:46[0m :: (Reading database ... 65%
[35m01:12:46[0m :: (Reading database ... 70%
[35m01:12:46[0m :: (Reading database ... 75%
[35m01:12:46[0m :: (Reading database ... 80%
[35m01:12:46[0m :: (Reading database ... 85%
[35m01:12:46[0m :: (Reading database ... 90%
[35m01:12:46[0m :: (Reading database ... 95%
[35m01:12:46[0m :: (Reading database ... 100%
[35m01:12:46[0m :: (Reading database ... 19016 files and directories currently installed.)
[35m01:12:46[0m :: Preparing to unpack .../time_1.9-0.1_amd64.deb ...
[35m01:12:46[0m :: Unpacking time (1.9-0.1) ...
[35m01:12:46[0m :: Setting up time (1.9-0.1) ...
[35m01:12:49[0m :: ===> Searching for: Text::Table::Simple
[35m01:13:04[0m :: ===> Installing: Text::Table::Simple:ver<0.1.0>:auth<github:ugexe>
[1;36m[task stderr][0m
[35m01:13:04[0m :: debconf: delaying package configuration, since apt-utils is not installed
[35m01:13:04[0m :: ===> Updating fez mirror: https://360.zef.pm/
[35m01:13:04[0m :: ===> Updated fez mirror: https://360.zef.pm/
[35m01:13:04[0m :: ===> Updating rea mirror: https://raw.githubusercontent.com/Raku/REA/main/META.json
[35m01:13:04[0m :: ===> Updated rea mirror: https://raw.githubusercontent.com/Raku/REA/main/META.json