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

SparrowCI Report - gh-melezhik-elliptic-curves-raku | [image: melezhik/sparrow:debian]

  • Summary
  • Pipeline YAML
  • Report
BuildID: 2360
Status: OK
Image: melezhik/sparrow:debian
Worker status: OK
---
Date: 28.12.2022 @ 18:43
Time elapsed: 490 sec
---
SCM: https://github.com/melezhik/elliptic-curves-raku.git
Git sha: 239bdcf
Git comment: fix yaml
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
    followup:
      -
        name: good-doc
  -
    name: good-doc
    plugin: good-doc
    config:
      path: source/README.md
      rakudo_path: "{{ CWD }}/rakudo-moar-2022.12-01-linux-x86_64-gcc"
  -
    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
18:42:35 :: [repository] - index updated from https://sparrowhub.io/repo/api/v1/index
run stage: run
18:42:39 :: [repository] - installing good-doc, version 0.000013
[task run: task.bash - good-doc]
[dump code: task.bash]
[1] set -e
[2] 
[3] cd $dir
[4] 
[5] cat $file
[6] 
[7] rakudo_path=$(config rakudo_path)
[8] 
[9] if ! test -z $rakudo_path; then
[10]   echo "Using rakudo from $rakudo_path:"
[11]   eval "$($rakudo_path/scripts/set-env.sh)"
[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]
18:42:41 :: 
18:42:41 :: {
18:42:41 ::     use secp256k1;
18:42:41 :: 
18:42:41 ::     say G;
18:42:41 ::     say $_*G for 1..10;
18:42:41 :: 
18:42:41 ::     use Test;
18:42:41 ::     is 35*G + 5*G, 40*G;
18:42:41 :: }
18:42:41 :: 
18:42:41 :: {
18:42:41 ::     use ed25519;
18:42:41 :: 
18:42:41 ::     # create a key
18:42:41 ::     # - randomly :
18:42:41 ::     my ed25519::Key $key .= new;
18:42:41 ::     # - from a seed :
18:42:41 ::     my blob8 $secret-seed .= new: ^256 .roll: 32;
18:42:41 ::     my ed25519::Key $key .= new: $secret-seed;
18:42:41 :: 
18:42:41 ::     # use key to sign a message
18:42:41 ::     my $signature = $key.sign: "Hello world!";
18:42:41 :: 
18:42:41 ::     # verify signature
18:42:41 ::     use Test;
18:42:41 ::     lives-ok { ed25519::verify "foo", $key.sign("foo"), $key.point };
18:42:41 ::     dies-ok  { ed25519::verify "foo", $key.sign("bar"), $key.point };
18:42:41 :: }
18:42:42 :: Using rakudo from /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.12-01-linux-x86_64-gcc:
18:42:42 ::                            Adding Rakudo to PATH
18:42:42 ::                           =======================
18:42:42 :: 
18:42:42 :: Paths successfully added.
18:42:42 :: 
18:42:42 :: ================================================================================
18:42:42 ::  =========                                                             __   __
18:42:42 ::   ||_|_||                =============================                (  \,/  )
18:42:42 ::   || # ||                 Welcome to the Raku Console                  \_ O _/
18:42:42 ::   || # ||                =============================                 (_/ \_)
18:42:42 :: 
18:42:42 :: This console has all the tools available you need to get started using Raku.
18:42:42 :: 
18:42:42 :: Rakudo provides an interactive command line interpreter (a so called Read Eval
18:42:42 :: Print Loop, REPL for short) you can use to quickly try out pieces of Raku code.
18:42:42 :: Start it by typing:
18:42:42 :: 
18:42:42 ::     raku
18:42:42 :: 
18:42:42 :: If you already have a Raku program in a file, you can run it by typing:
18:42:42 :: 
18:42:42 ::     raku path/to/my/program.raku
18:42:42 :: 
18:42:42 :: To install additional modules you can use the Zef module manager:
18:42:42 :: 
18:42:42 ::     zef install Some::Module
18:42:42 :: 
18:42:42 :: https://rakudo.org/           - The home of this implementation of Raku.
18:42:42 :: https://raku.land/            - Go here to browse for Raku modules.
18:42:42 :: https://docs.raku.org/        - The Raku documentation.
18:42:42 :: https://web.libera.chat/#raku - The Raku user chat. Talk to us!
18:42:42 :: 
18:42:42 ::                               Happy hacking!
18:42:42 :: 
18:42:42 :: ================================================================================
18:42:42 :: 
18:42:42 :: Welcome to Rakudo™ v2022.12.
18:42:42 :: Implementing the Raku® Programming Language v6.d.
18:42:42 :: Built on MoarVM version 2022.12.
18:42:42 :: run raku -I lib /home/worker/.sparrow6/tmp/60715/code.raku ...
18:43:04 :: EC Point at x=55066263022277343669578718895168534326250603453777594175500187360389116729240, y=32670510020758816978083085130507043184471273380659243275938904335757337482424
18:43:04 :: EC Point at x=55066263022277343669578718895168534326250603453777594175500187360389116729240, y=32670510020758816978083085130507043184471273380659243275938904335757337482424
18:43:04 :: EC Point at x=89565891926547004231252920425935692360644145829622209833684329913297188986597, y=12158399299693830322967808612713398636155367887041628176798871954788371653930
18:43:04 :: EC Point at x=112711660439710606056748659173929673102114977341539408544630613555209775888121, y=25583027980570883691656905877401976406448868254816295069919888960541586679410
18:43:04 :: EC Point at x=103388573995635080359749164254216598308788835304023601477803095234286494993683, y=37057141145242123013015316630864329550140216928701153669873286428255828810018
18:43:04 :: EC Point at x=21505829891763648114329055987619236494102133314575206970830385799158076338148, y=98003708678762621233683240503080860129026887322874138805529884920309963580118
18:43:04 :: EC Point at x=115780575977492633039504758427830329241728645270042306223540962614150928364886, y=78735063515800386211891312544505775871260717697865196436804966483607426560663
18:43:04 :: EC Point at x=41948375291644419605210209193538855353224492619856392092318293986323063962044, y=48361766907851246668144012348516735800090617714386977531302791340517493990618
18:43:04 :: EC Point at x=21262057306151627953595685090280431278183829487175876377991189246716355947009, y=41749993296225487051377864631615517161996906063147759678534462689479575333124
18:43:04 :: EC Point at x=78173298682877769088723994436027545680738210601369041078747105985693655485630, y=92362876758821804597230797234617159328445543067760556585160674174871431781431
18:43:04 :: EC Point at x=72488970228380509287422715226575535698893157273063074627791787432852706183111, y=62070622898698443831883535403436258712770888294397026493185421712108624767191
18:43:04 :: ok 1 - 
18:43:06 :: ok 2 - 
18:43:07 :: ok 3 - 
[task stderr]
18:43:07 :: Potential difficulties:
18:43:07 ::     Redeclaration of symbol '$key'.
18:43:07 ::     at /home/worker/.sparrow6/tmp/60715/code.raku:20
18:43:07 ::     ------>     my ed25519::Key $key⏏ .= new: $secret-seed;
18:35:55 :: [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
18:35:58 :: [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]
18:36:01 :: 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]
18:42:22 :: O----------------O--------O---------------------------------------------------------O------------O
18:42:22 :: | Rakudo Version | Status | Time                                                    | Linux Dist |
18:42:22 :: O================O========O=========================================================O============O
18:42:22 :: | 2022.07        | OK     | 0:44.11 real,51.83 user,2.54 sys | CPU Percentage: 123% | debian     |
18:42:22 :: | 2022.12        | OK     | 0:49.97 real,60.30 user,2.52 sys | CPU Percentage: 125% | debian     |
18:42:22 :: --------------------------------------------------------------------------------------------------
18:36:26 :: [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]
18:39:15 :: Linux version: debian
18:39:16 ::                            Adding Rakudo to PATH
18:39:16 ::                           =======================
18:39:16 :: 
18:39:16 :: Paths successfully added.
18:39:16 :: 
18:39:16 :: ================================================================================
18:39:16 ::  =========                                                             __   __
18:39:16 ::   ||_|_||                =============================                (  \,/  )
18:39:16 ::   || # ||                 Welcome to the Raku Console                  \_ O _/
18:39:16 ::   || # ||                =============================                 (_/ \_)
18:39:16 :: 
18:39:16 :: This console has all the tools available you need to get started using Raku.
18:39:16 :: 
18:39:16 :: Rakudo provides an interactive command line interpreter (a so called Read Eval
18:39:16 :: Print Loop, REPL for short) you can use to quickly try out pieces of Raku code.
18:39:16 :: Start it by typing:
18:39:16 :: 
18:39:16 ::     raku
18:39:16 :: 
18:39:16 :: If you already have a Raku program in a file, you can run it by typing:
18:39:16 :: 
18:39:16 ::     raku path/to/my/program.raku
18:39:16 :: 
18:39:16 :: To install additional modules you can use the Zef module manager:
18:39:16 :: 
18:39:16 ::     zef install Some::Module
18:39:16 :: 
18:39:16 :: https://rakudo.org/           - The home of this implementation of Raku.
18:39:16 :: https://raku.land/            - Go here to browse for Raku modules.
18:39:16 :: https://docs.raku.org/        - The Raku documentation.
18:39:16 :: https://web.libera.chat/#raku - The Raku user chat. Talk to us!
18:39:16 :: 
18:39:16 ::                               Happy hacking!
18:39:16 :: 
18:39:16 :: ================================================================================
18:39:16 :: 
18:39:16 :: /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.07-01-linux-x86_64-gcc/bin/raku
18:39:16 :: /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.07-01-linux-x86_64-gcc/share/perl6/site/bin/zef
18:39:16 :: Welcome to Rakudo™ v2022.07.
18:39:16 :: Implementing the Raku® Programming Language v6.d.
18:39:16 :: Built on MoarVM version 2022.07.
18:39:43 :: v0.14.5
18:40:04 :: ===> Searching for missing dependencies: Digest, FiniteFields
18:40:34 :: ===> Installing: Digest:ver<0.27.6>
18:40:34 :: ===> Installing: FiniteFields:ver<0.3.0>:auth<zef:grondilu>
18:40:36 :: ===> Testing: EC:ver<0.6.5>:auth<zef:grondilu>
18:41:18 :: [EC] Testing with plugin: Zef::Service::Shell::prove+{<anon|1>}
18:41:18 :: [EC] t/basic.t ...... 
18:41:18 :: [EC] ok 1 - basic construction
18:41:18 :: [EC] ok 2 - idempotence
18:41:18 :: [EC] ok 3 - public and private keys match
18:41:18 :: [EC] ok 4 - signature could be reproduced
18:41:18 :: [EC] ok 5 - good signature
18:41:18 :: [EC] ok 6 - public and private keys match
18:41:18 :: [EC] ok 7 - signature could be reproduced
18:41:18 :: [EC] ok 8 - good signature
18:41:18 :: [EC] ok 9 - public and private keys match
18:41:18 :: [EC] ok 10 - signature could be reproduced
18:41:18 :: [EC] ok 11 - good signature
18:41:18 :: [EC] ok 12 - public and private keys match
18:41:18 :: [EC] ok 13 - signature could be reproduced
18:41:18 :: [EC] ok 14 - good signature
18:41:18 :: [EC] 1..14
18:41:18 :: [EC] ok
18:41:18 :: [EC] t/secp256k1.t .. 
18:41:18 :: [EC] ok 1 - 
18:41:18 :: [EC] ok 2 - 
18:41:18 :: [EC] ok 3 - 
18:41:18 :: [EC] ok 4 - 
18:41:18 :: [EC] ok 5 - 
18:41:18 :: [EC] ok 6 - 
18:41:18 :: [EC] ok 7 - 
18:41:18 :: [EC] ok 8 - 
18:41:18 :: [EC] ok 9 - 
18:41:18 :: [EC] ok 10 - 
18:41:18 :: [EC] ok 11 - 
18:41:18 :: [EC] ok 12 - 
18:41:18 :: [EC] ok 13 - 
18:41:18 :: [EC] ok 14 - 
18:41:18 :: [EC] ok 15 - 
18:41:18 :: [EC] ok 16 - 
18:41:18 :: [EC] ok 17 - 
18:41:18 :: [EC] ok 18 - 
18:41:18 :: [EC] ok 19 - 
18:41:18 :: [EC] ok 20 - 
18:41:18 :: [EC] ok 21 - 
18:41:18 :: [EC] ok 22 - 
18:41:18 :: [EC] ok 23 - 
18:41:18 :: [EC] ok 24 - 
18:41:18 :: [EC] ok 25 - 
18:41:18 :: [EC] ok 26 - 
18:41:18 :: [EC] ok 27 - 
18:41:18 :: [EC] ok 28 - 
18:41:18 :: [EC] ok 29 - 
18:41:18 :: [EC] ok 30 - 
18:41:18 :: [EC] ok 31 - 
18:41:18 :: [EC] ok 32 - 
18:41:18 :: [EC] ok 33 - 
18:41:18 :: [EC] ok 34 - 
18:41:18 :: [EC] ok 35 - 
18:41:18 :: [EC] ok 36 - 
18:41:18 :: [EC] ok 37 - 
18:41:18 :: [EC] ok 38 - 
18:41:18 :: [EC] ok 39 - 
18:41:18 :: [EC] ok 40 - 
18:41:18 :: [EC] ok 41 - 
18:41:18 :: [EC] ok 42 - 
18:41:18 :: [EC] ok 43 - 
18:41:18 :: [EC] ok 44 - 
18:41:18 :: [EC] ok 45 - 
18:41:18 :: [EC] 1..45
18:41:18 :: [EC] ok
18:41:18 :: [EC] t/speccheck.t .. 
18:41:18 :: [EC] 1..12
18:41:18 :: [EC] ok 1 - ...22b6
18:41:18 :: [EC] ok 2 - ...2e79
18:41:18 :: [EC] ok 3 - ...b9ab
18:41:18 :: [EC] ok 4 - ...2e79
18:41:18 :: [EC] ok 5 - ...f56c
18:41:18 :: [EC] ok 6 - ...f56c
18:41:18 :: [EC] ok 7 - # SKIP problematic case
18:41:18 :: [EC] ok 8 - # SKIP problematic case
18:41:18 :: [EC] ok 9 - ...8b41
18:41:18 :: [EC] ok 10 - # SKIP problematic case
18:41:18 :: [EC] ok 11 - ...155b
18:41:18 :: [EC] ok 12 - ...c06f
18:41:18 :: [EC] ok
18:41:18 :: [EC] t/synopsis.t ... 
18:41:18 :: [EC] 1..4
18:41:18 :: [EC] ok 1 - key creation
18:41:18 :: [EC] ok 2 - signing
18:41:18 :: [EC] ok 3 - signature verification, true match
18:41:18 :: [EC] ok 4 - signature verification, true mismatch
18:41:18 :: [EC] ok
18:41:18 :: [EC] All tests successful.
18:41:18 :: [EC] Files=4, Tests=75, 42 wallclock secs ( 0.04 usr  0.03 sys + 48.56 cusr  1.96 csys = 50.59 CPU)
18:41:18 :: [EC] Result: PASS
18:41:18 :: ===> Testing [OK] for EC:ver<0.6.5>:auth<zef:grondilu>
[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]
18:41:18 :: Linux version: debian
18:41:19 ::                            Adding Rakudo to PATH
18:41:19 ::                           =======================
18:41:19 :: 
18:41:19 :: Paths successfully added.
18:41:19 :: 
18:41:19 :: ================================================================================
18:41:19 ::  =========                                                             __   __
18:41:19 ::   ||_|_||                =============================                (  \,/  )
18:41:20 ::   || # ||                 Welcome to the Raku Console                  \_ O _/
18:41:20 ::   || # ||                =============================                 (_/ \_)
18:41:20 :: 
18:41:20 :: This console has all the tools available you need to get started using Raku.
18:41:20 :: 
18:41:20 :: Rakudo provides an interactive command line interpreter (a so called Read Eval
18:41:20 :: Print Loop, REPL for short) you can use to quickly try out pieces of Raku code.
18:41:20 :: Start it by typing:
18:41:20 :: 
18:41:20 ::     raku
18:41:20 :: 
18:41:20 :: If you already have a Raku program in a file, you can run it by typing:
18:41:20 :: 
18:41:20 ::     raku path/to/my/program.raku
18:41:20 :: 
18:41:20 :: To install additional modules you can use the Zef module manager:
18:41:20 :: 
18:41:20 ::     zef install Some::Module
18:41:20 :: 
18:41:20 :: https://rakudo.org/           - The home of this implementation of Raku.
18:41:20 :: https://raku.land/            - Go here to browse for Raku modules.
18:41:20 :: https://docs.raku.org/        - The Raku documentation.
18:41:20 :: https://web.libera.chat/#raku - The Raku user chat. Talk to us!
18:41:20 :: 
18:41:20 ::                               Happy hacking!
18:41:20 :: 
18:41:20 :: ================================================================================
18:41:20 :: 
18:41:20 :: /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.12-01-linux-x86_64-gcc/bin/raku
18:41:20 :: /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.12-01-linux-x86_64-gcc/share/perl6/site/bin/zef
18:41:20 :: Welcome to Rakudo™ v2022.12.
18:41:20 :: Implementing the Raku® Programming Language v6.d.
18:41:20 :: Built on MoarVM version 2022.12.
18:41:21 :: v0.14.5
18:41:26 :: ===> Testing: EC:ver<0.6.5>:auth<zef:grondilu>
18:42:14 :: [EC] Testing with plugin: Zef::Service::Shell::prove+{<anon|1>}
18:42:14 :: [EC] t/basic.t ...... 
18:42:14 :: [EC] ok 1 - basic construction
18:42:14 :: [EC] ok 2 - idempotence
18:42:14 :: [EC] ok 3 - public and private keys match
18:42:14 :: [EC] ok 4 - signature could be reproduced
18:42:14 :: [EC] ok 5 - good signature
18:42:14 :: [EC] ok 6 - public and private keys match
18:42:14 :: [EC] ok 7 - signature could be reproduced
18:42:14 :: [EC] ok 8 - good signature
18:42:14 :: [EC] ok 9 - public and private keys match
18:42:14 :: [EC] ok 10 - signature could be reproduced
18:42:14 :: [EC] ok 11 - good signature
18:42:14 :: [EC] ok 12 - public and private keys match
18:42:14 :: [EC] ok 13 - signature could be reproduced
18:42:14 :: [EC] ok 14 - good signature
18:42:14 :: [EC] 1..14
18:42:14 :: [EC] ok
18:42:14 :: [EC] t/secp256k1.t .. 
18:42:14 :: [EC] ok 1 - 
18:42:14 :: [EC] ok 2 - 
18:42:14 :: [EC] ok 3 - 
18:42:14 :: [EC] ok 4 - 
18:42:14 :: [EC] ok 5 - 
18:42:14 :: [EC] ok 6 - 
18:42:14 :: [EC] ok 7 - 
18:42:14 :: [EC] ok 8 - 
18:42:14 :: [EC] ok 9 - 
18:42:14 :: [EC] ok 10 - 
18:42:14 :: [EC] ok 11 - 
18:42:14 :: [EC] ok 12 - 
18:42:14 :: [EC] ok 13 - 
18:42:14 :: [EC] ok 14 - 
18:42:14 :: [EC] ok 15 - 
18:42:14 :: [EC] ok 16 - 
18:42:14 :: [EC] ok 17 - 
18:42:14 :: [EC] ok 18 - 
18:42:14 :: [EC] ok 19 - 
18:42:14 :: [EC] ok 20 - 
18:42:14 :: [EC] ok 21 - 
18:42:14 :: [EC] ok 22 - 
18:42:14 :: [EC] ok 23 - 
18:42:14 :: [EC] ok 24 - 
18:42:14 :: [EC] ok 25 - 
18:42:14 :: [EC] ok 26 - 
18:42:14 :: [EC] ok 27 - 
18:42:14 :: [EC] ok 28 - 
18:42:14 :: [EC] ok 29 - 
18:42:14 :: [EC] ok 30 - 
18:42:14 :: [EC] ok 31 - 
18:42:14 :: [EC] ok 32 - 
18:42:14 :: [EC] ok 33 - 
18:42:14 :: [EC] ok 34 - 
18:42:14 :: [EC] ok 35 - 
18:42:14 :: [EC] ok 36 - 
18:42:14 :: [EC] ok 37 - 
18:42:14 :: [EC] ok 38 - 
18:42:14 :: [EC] ok 39 - 
18:42:14 :: [EC] ok 40 - 
18:42:14 :: [EC] ok 41 - 
18:42:14 :: [EC] ok 42 - 
18:42:14 :: [EC] ok 43 - 
18:42:14 :: [EC] ok 44 - 
18:42:14 :: [EC] ok 45 - 
18:42:14 :: [EC] 1..45
18:42:14 :: [EC] ok
18:42:14 :: [EC] t/speccheck.t .. 
18:42:14 :: [EC] 1..12
18:42:14 :: [EC] ok 1 - ...22b6
18:42:14 :: [EC] ok 2 - ...2e79
18:42:14 :: [EC] ok 3 - ...b9ab
18:42:14 :: [EC] ok 4 - ...2e79
18:42:14 :: [EC] ok 5 - ...f56c
18:42:14 :: [EC] ok 6 - ...f56c
18:42:14 :: [EC] ok 7 - # SKIP problematic case
18:42:14 :: [EC] ok 8 - # SKIP problematic case
18:42:14 :: [EC] ok 9 - ...8b41
18:42:14 :: [EC] ok 10 - # SKIP problematic case
18:42:14 :: [EC] ok 11 - ...155b
18:42:14 :: [EC] ok 12 - ...c06f
18:42:14 :: [EC] ok
18:42:14 :: [EC] t/synopsis.t ... 
18:42:14 :: [EC] 1..4
18:42:14 :: [EC] ok 1 - key creation
18:42:14 :: [EC] ok 2 - signing
18:42:14 :: [EC] ok 3 - signature verification, true match
18:42:14 :: [EC] ok 4 - signature verification, true mismatch
18:42:14 :: [EC] ok
18:42:14 :: [EC] All tests successful.
18:42:14 :: [EC] Files=4, Tests=75, 48 wallclock secs ( 0.05 usr  0.01 sys + 57.46 cusr  2.05 csys = 59.57 CPU)
18:42:14 :: [EC] Result: PASS
18:42:14 :: ===> Testing [OK] for EC:ver<0.6.5>:auth<zef:grondilu>
[task stderr]
18:42:14 :: All candidates are currently installed
[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]
18:36:39 :: [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]
18:36:43 :: Reading package lists...
18:36:43 :: Building dependency tree...
18:36:43 :: Reading state information...
18:36:43 :: The following NEW packages will be installed:
18:36:43 ::   time
18:36:43 :: 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
18:36:43 :: Need to get 50.8 kB of archives.
18:36:43 :: After this operation, 132 kB of additional disk space will be used.
18:36:43 :: Get:1 http://deb.debian.org/debian bullseye/main amd64 time amd64 1.9-0.1 [50.8 kB]
18:36:44 :: Fetched 50.8 kB in 0s (1250 kB/s)
18:36:44 :: Selecting previously unselected package time.
18:36:44 :: (Reading database ... 
18:36:44 :: (Reading database ... 5%
18:36:44 :: (Reading database ... 10%
18:36:44 :: (Reading database ... 15%
18:36:44 :: (Reading database ... 20%
18:36:44 :: (Reading database ... 25%
18:36:44 :: (Reading database ... 30%
18:36:44 :: (Reading database ... 35%
18:36:44 :: (Reading database ... 40%
18:36:44 :: (Reading database ... 45%
18:36:44 :: (Reading database ... 50%
18:36:44 :: (Reading database ... 55%
18:36:44 :: (Reading database ... 60%
18:36:44 :: (Reading database ... 65%
18:36:44 :: (Reading database ... 70%
18:36:44 :: (Reading database ... 75%
18:36:44 :: (Reading database ... 80%
18:36:44 :: (Reading database ... 85%
18:36:44 :: (Reading database ... 90%
18:36:44 :: (Reading database ... 95%
18:36:44 :: (Reading database ... 100%
18:36:44 :: (Reading database ... 19016 files and directories currently installed.)
18:36:44 :: Preparing to unpack .../time_1.9-0.1_amd64.deb ...
18:36:44 :: Unpacking time (1.9-0.1) ...
18:36:44 :: Setting up time (1.9-0.1) ...
18:36:46 :: ===> Searching for: Text::Table::Simple
18:37:08 :: ===> Installing: Text::Table::Simple:ver<0.1.0>:auth<github:ugexe>
[task stderr]
18:37:08 :: debconf: delaying package configuration, since apt-utils is not installed
18:37:08 :: ===> Updating fez mirror: https://360.zef.pm/
18:37:08 :: ===> Updated fez mirror: https://360.zef.pm/
18:37:08 :: ===> Updating rea mirror: https://raw.githubusercontent.com/Raku/REA/main/META.json
18:37:08 :: ===> Updated rea mirror: https://raw.githubusercontent.com/Raku/REA/main/META.json