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

SparrowCI Report - gh-melezhik-p6-jupyter-kernel | [image: melezhik/sparrow:debian]

  • Summary
  • Pipeline YAML
  • Report
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
01:11:59 :: [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
01:12:04 :: [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]
01:12:07 :: tar -xzf source.tar.gz 
[task run: task.raku - tasks/main]
[dump code: task.raku]
[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] 
[task stdout]
01:17:22 :: O----------------O--------O----------------------------------------------------------O------------O
01:17:22 :: | Rakudo Version | Status | Time                                                     | Linux Dist |
01:17:22 :: O================O========O==========================================================O============O
01:17:22 :: | 2022.07        | FAIL   | Command exited with non-zero status 1                    | debian     |
01:17:22 :: |                |        | 0:45.18 real,69.63 user,5.96 sys | CPU Percentage: 167%  |            |
01:17:22 :: | 2022.12        | FAIL   | Command exited with non-zero status 1                    | debian     |
01:17:22 :: |                |        | 1:06.70 real,101.58 user,8.86 sys | CPU Percentage: 165% |            |
01:17:22 :: ---------------------------------------------------------------------------------------------------
[task stderr]
01:17:22 :: some tests failed
01:17:22 ::   in block <unit> at /var/.sparrowdo/env/main/.sparrowdo/tasks/main/task.raku line 11
01:17:22 :: 
01:17:22 :: task exit status: 1
01:17:22 :: 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

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