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