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

SparrowCI Report - gh-dwarring-PDF-Font-Loader-raku | [image: melezhik/sparrow:debian]

  • Summary
  • Pipeline YAML
  • Report
BuildID: 3418
Status: FAIL
Image: melezhik/sparrow:debian
Worker status: OK
---
Date: 04.07.2023 @ 20:37
Time elapsed: 653 sec
---
SCM: https://github.com/pdf-raku/PDF-Font-Loader-raku.git
Git sha: 7556173
Git comment: use low level freetype .bbox method
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.06
    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 . && touch "${cache_root_dir}/${version}_ok"
          
    depends:
      -
        name: install-deps
  -
    name: install-deps
    language: Bash
    code: |
      set -e
      sudo apt-get -y update 
      sudo apt-get install -y time libfontconfig1-dev libfreetype-dev
      zef install --/test Text::Table::Simple 
 
20:27:44 :: [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] set -e
[2] sudo apt-get -y update 
[3] sudo apt-get install -y time libfontconfig1-dev libfreetype-dev
[4] zef install --/test Text::Table::Simple 
[5] 
[task stdout]
20:27:46 :: Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB]
20:27:46 :: Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB]
20:27:46 :: Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB]
20:27:46 :: Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8183 kB]
20:27:46 :: Get:5 https://dl.cloudsmith.io/public/nxadm-pkgs/rakudo-pkg/deb/debian bullseye InRelease [5264 B]
20:27:46 :: Get:6 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [252 kB]
20:27:46 :: Get:7 http://deb.debian.org/debian bullseye-updates/main amd64 Packages.diff/Index [18.5 kB]
20:27:47 :: Get:8 http://deb.debian.org/debian bullseye-updates/main amd64 Packages T-2023-05-24-2006.01-F-2023-02-20-2009.57.pdiff [1516 B]
20:27:47 :: Get:8 http://deb.debian.org/debian bullseye-updates/main amd64 Packages T-2023-05-24-2006.01-F-2023-02-20-2009.57.pdiff [1516 B]
20:27:47 :: Get:9 https://dl.cloudsmith.io/public/nxadm-pkgs/rakudo-pkg/deb/debian bullseye/main amd64 Packages [3969 B]
20:27:47 :: Fetched 8672 kB in 1s (6464 kB/s)
20:27:48 :: Reading package lists...
20:27:48 :: Reading package lists...
20:27:49 :: Building dependency tree...
20:27:49 :: Reading state information...
20:27:49 :: The following additional packages will be installed:
20:27:49 ::   libbrotli-dev libexpat1-dev libfontconfig-dev libfreetype6-dev libglib2.0-0
20:27:49 ::   libglib2.0-data libicu67 libpng-dev libpng-tools libxml2 pkg-config
20:27:49 ::   shared-mime-info uuid-dev xdg-user-dirs zlib1g-dev
20:27:49 :: Suggested packages:
20:27:49 ::   freetype2-doc
20:27:49 :: The following NEW packages will be installed:
20:27:49 ::   libbrotli-dev libexpat1-dev libfontconfig-dev libfontconfig1-dev
20:27:49 ::   libfreetype-dev libfreetype6-dev libglib2.0-0 libglib2.0-data libicu67
20:27:49 ::   libpng-dev libpng-tools libxml2 pkg-config shared-mime-info time uuid-dev
20:27:49 ::   xdg-user-dirs zlib1g-dev
20:27:49 :: 0 upgraded, 18 newly installed, 0 to remove and 35 not upgraded.
20:27:49 :: Need to get 15.1 MB of archives.
20:27:49 :: After this operation, 61.7 MB of additional disk space will be used.
20:27:49 :: Get:1 http://deb.debian.org/debian bullseye/main amd64 libbrotli-dev amd64 1.0.9-2+b2 [288 kB]
20:27:49 :: Get:2 http://deb.debian.org/debian bullseye/main amd64 libexpat1-dev amd64 2.2.10-2+deb11u5 [141 kB]
20:27:49 :: Get:3 http://deb.debian.org/debian bullseye/main amd64 zlib1g-dev amd64 1:1.2.11.dfsg-2+deb11u2 [191 kB]
20:27:49 :: Get:4 http://deb.debian.org/debian bullseye/main amd64 libpng-dev amd64 1.6.37-3 [298 kB]
20:27:49 :: Get:5 http://deb.debian.org/debian bullseye/main amd64 libfreetype-dev amd64 2.10.4+dfsg-1+deb11u1 [571 kB]
20:27:49 :: Get:6 http://deb.debian.org/debian bullseye/main amd64 libfreetype6-dev amd64 2.10.4+dfsg-1+deb11u1 [82.6 kB]
20:27:49 :: Get:7 http://deb.debian.org/debian bullseye/main amd64 uuid-dev amd64 2.36.1-8+deb11u1 [99.4 kB]
20:27:49 :: Get:8 http://deb.debian.org/debian bullseye/main amd64 libglib2.0-0 amd64 2.66.8-1 [1370 kB]
20:27:49 :: Get:9 http://deb.debian.org/debian bullseye/main amd64 pkg-config amd64 0.29.2-1 [65.1 kB]
20:27:49 :: Get:10 http://deb.debian.org/debian bullseye/main amd64 libfontconfig-dev amd64 2.13.1-4.2 [368 kB]
20:27:49 :: Get:11 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1-dev amd64 2.13.1-4.2 [238 kB]
20:27:49 :: Get:12 http://deb.debian.org/debian bullseye/main amd64 libglib2.0-data all 2.66.8-1 [1164 kB]
20:27:49 :: Get:13 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB]
20:27:49 :: Get:14 http://deb.debian.org/debian bullseye/main amd64 libpng-tools amd64 1.6.37-3 [141 kB]
20:27:49 :: Get:15 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB]
20:27:49 :: Get:16 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB]
20:27:49 :: Get:17 http://deb.debian.org/debian bullseye/main amd64 time amd64 1.9-0.1 [50.8 kB]
20:27:49 :: Get:18 http://deb.debian.org/debian bullseye/main amd64 xdg-user-dirs amd64 0.17-2 [53.8 kB]
20:27:49 :: Fetched 15.1 MB in 0s (59.7 MB/s)
20:27:49 :: Selecting previously unselected package libbrotli-dev:amd64.
20:27:49 :: (Reading database ... 
20:27:49 :: (Reading database ... 5%
20:27:49 :: (Reading database ... 10%
20:27:49 :: (Reading database ... 15%
20:27:49 :: (Reading database ... 20%
20:27:49 :: (Reading database ... 25%
20:27:49 :: (Reading database ... 30%
20:27:49 :: (Reading database ... 35%
20:27:49 :: (Reading database ... 40%
20:27:49 :: (Reading database ... 45%
20:27:49 :: (Reading database ... 50%
20:27:49 :: (Reading database ... 55%
20:27:49 :: (Reading database ... 60%
20:27:49 :: (Reading database ... 65%
20:27:49 :: (Reading database ... 70%
20:27:49 :: (Reading database ... 75%
20:27:49 :: (Reading database ... 80%
20:27:49 :: (Reading database ... 85%
20:27:49 :: (Reading database ... 90%
20:27:49 :: (Reading database ... 95%
20:27:49 :: (Reading database ... 100%
20:27:49 :: (Reading database ... 19016 files and directories currently installed.)
20:27:49 :: Preparing to unpack .../00-libbrotli-dev_1.0.9-2+b2_amd64.deb ...
20:27:49 :: Unpacking libbrotli-dev:amd64 (1.0.9-2+b2) ...
20:27:49 :: Selecting previously unselected package libexpat1-dev:amd64.
20:27:49 :: Preparing to unpack .../01-libexpat1-dev_2.2.10-2+deb11u5_amd64.deb ...
20:27:49 :: Unpacking libexpat1-dev:amd64 (2.2.10-2+deb11u5) ...
20:27:49 :: Selecting previously unselected package zlib1g-dev:amd64.
20:27:49 :: Preparing to unpack .../02-zlib1g-dev_1%3a1.2.11.dfsg-2+deb11u2_amd64.deb ...
20:27:49 :: Unpacking zlib1g-dev:amd64 (1:1.2.11.dfsg-2+deb11u2) ...
20:27:49 :: Selecting previously unselected package libpng-dev:amd64.
20:27:49 :: Preparing to unpack .../03-libpng-dev_1.6.37-3_amd64.deb ...
20:27:49 :: Unpacking libpng-dev:amd64 (1.6.37-3) ...
20:27:49 :: Selecting previously unselected package libfreetype-dev:amd64.
20:27:49 :: Preparing to unpack .../04-libfreetype-dev_2.10.4+dfsg-1+deb11u1_amd64.deb ...
20:27:49 :: Unpacking libfreetype-dev:amd64 (2.10.4+dfsg-1+deb11u1) ...
20:27:49 :: Selecting previously unselected package libfreetype6-dev:amd64.
20:27:49 :: Preparing to unpack .../05-libfreetype6-dev_2.10.4+dfsg-1+deb11u1_amd64.deb ...
20:27:49 :: Unpacking libfreetype6-dev:amd64 (2.10.4+dfsg-1+deb11u1) ...
20:27:49 :: Selecting previously unselected package uuid-dev:amd64.
20:27:49 :: Preparing to unpack .../06-uuid-dev_2.36.1-8+deb11u1_amd64.deb ...
20:27:49 :: Unpacking uuid-dev:amd64 (2.36.1-8+deb11u1) ...
20:27:49 :: Selecting previously unselected package libglib2.0-0:amd64.
20:27:49 :: Preparing to unpack .../07-libglib2.0-0_2.66.8-1_amd64.deb ...
20:27:49 :: Unpacking libglib2.0-0:amd64 (2.66.8-1) ...
20:27:50 :: Selecting previously unselected package pkg-config.
20:27:50 :: Preparing to unpack .../08-pkg-config_0.29.2-1_amd64.deb ...
20:27:50 :: Unpacking pkg-config (0.29.2-1) ...
20:27:50 :: Selecting previously unselected package libfontconfig-dev:amd64.
20:27:50 :: Preparing to unpack .../09-libfontconfig-dev_2.13.1-4.2_amd64.deb ...
20:27:50 :: Unpacking libfontconfig-dev:amd64 (2.13.1-4.2) ...
20:27:50 :: Selecting previously unselected package libfontconfig1-dev:amd64.
20:27:50 :: Preparing to unpack .../10-libfontconfig1-dev_2.13.1-4.2_amd64.deb ...
20:27:50 :: Unpacking libfontconfig1-dev:amd64 (2.13.1-4.2) ...
20:27:50 :: Selecting previously unselected package libglib2.0-data.
20:27:50 :: Preparing to unpack .../11-libglib2.0-data_2.66.8-1_all.deb ...
20:27:50 :: Unpacking libglib2.0-data (2.66.8-1) ...
20:27:50 :: Selecting previously unselected package libicu67:amd64.
20:27:50 :: Preparing to unpack .../12-libicu67_67.1-7_amd64.deb ...
20:27:50 :: Unpacking libicu67:amd64 (67.1-7) ...
20:27:51 :: Selecting previously unselected package libpng-tools.
20:27:51 :: Preparing to unpack .../13-libpng-tools_1.6.37-3_amd64.deb ...
20:27:51 :: Unpacking libpng-tools (1.6.37-3) ...
20:27:51 :: Selecting previously unselected package libxml2:amd64.
20:27:51 :: Preparing to unpack .../14-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ...
20:27:51 :: Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ...
20:27:51 :: Selecting previously unselected package shared-mime-info.
20:27:51 :: Preparing to unpack .../15-shared-mime-info_2.0-1_amd64.deb ...
20:27:51 :: Unpacking shared-mime-info (2.0-1) ...
20:27:51 :: Selecting previously unselected package time.
20:27:51 :: Preparing to unpack .../16-time_1.9-0.1_amd64.deb ...
20:27:51 :: Unpacking time (1.9-0.1) ...
20:27:51 :: Selecting previously unselected package xdg-user-dirs.
20:27:51 :: Preparing to unpack .../17-xdg-user-dirs_0.17-2_amd64.deb ...
20:27:51 :: Unpacking xdg-user-dirs (0.17-2) ...
20:27:51 :: Setting up time (1.9-0.1) ...
20:27:51 :: Setting up libicu67:amd64 (67.1-7) ...
20:27:51 :: Setting up xdg-user-dirs (0.17-2) ...
20:27:51 :: Setting up libpng-tools (1.6.37-3) ...
20:27:51 :: Setting up libglib2.0-0:amd64 (2.66.8-1) ...
20:27:51 :: No schema files found: doing nothing.
20:27:51 :: Setting up libglib2.0-data (2.66.8-1) ...
20:27:51 :: Setting up libexpat1-dev:amd64 (2.2.10-2+deb11u5) ...
20:27:51 :: Setting up uuid-dev:amd64 (2.36.1-8+deb11u1) ...
20:27:51 :: Setting up pkg-config (0.29.2-1) ...
20:27:51 :: Setting up zlib1g-dev:amd64 (1:1.2.11.dfsg-2+deb11u2) ...
20:27:51 :: Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ...
20:27:51 :: Setting up libbrotli-dev:amd64 (1.0.9-2+b2) ...
20:27:51 :: Setting up libpng-dev:amd64 (1.6.37-3) ...
20:27:51 :: Setting up libfreetype-dev:amd64 (2.10.4+dfsg-1+deb11u1) ...
20:27:51 :: Setting up shared-mime-info (2.0-1) ...
20:27:52 :: Setting up libfreetype6-dev:amd64 (2.10.4+dfsg-1+deb11u1) ...
20:27:52 :: Setting up libfontconfig-dev:amd64 (2.13.1-4.2) ...
20:27:52 :: Setting up libfontconfig1-dev:amd64 (2.13.1-4.2) ...
20:27:52 :: Processing triggers for libc-bin (2.31-13+deb11u5) ...
20:27:53 :: ===> Searching for: Text::Table::Simple
20:28:04 :: ===> Installing: Text::Table::Simple:ver<0.1.0>:auth<github:ugexe>
[task stderr]
20:28:04 :: debconf: delaying package configuration, since apt-utils is not installed
20:28:04 :: ===> Updating fez mirror: https://360.zef.pm/
20:28:04 :: ===> Updated fez mirror: https://360.zef.pm/
20:28:04 :: ===> Updating rea mirror: https://raw.githubusercontent.com/Raku/REA/main/META.json
20:28:04 :: ===> Updated rea mirror: https://raw.githubusercontent.com/Raku/REA/main/META.json
20:27:28 :: [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] 
[3] echo "Linux version: $os"
[4] 
[5] curl -sL https://rakudo.org/dl/rakudo/rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz \
[6] -o rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz
[7] tar -xzf rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz          
[8] eval "$(rakudo-moar-$version-01-linux-x86_64-gcc/scripts/set-env.sh)"
[9] 
[10] which raku
[11] which zef
[12] 
[13] raku --version
[14] zef --version
[15] 
[16] cd source/
[17] zef install . --deps-only --test-depends --build-depends --/test -to=home         
[18] /usr/bin/time -f "%E real,%U user,%S sys / CPU Percentage: %P" -o "${cache_root_dir}/${version}_time" \
[19] zef test . && touch "${cache_root_dir}/${version}_ok"
[20] 
[task stdout]
20:28:10 :: Linux version: debian
20:28:11 ::                            Adding Rakudo to PATH
20:28:11 ::                           =======================
20:28:11 :: 
20:28:11 :: Paths successfully added.
20:28:11 :: 
20:28:11 :: ================================================================================
20:28:11 ::  =========                                                             __   __
20:28:11 ::   ||_|_||                =============================                (  \,/  )
20:28:11 ::   || # ||                 Welcome to the Raku Console                  \_ O _/
20:28:11 ::   || # ||                =============================                 (_/ \_)
20:28:11 :: 
20:28:11 :: This console has all the tools available you need to get started using Raku.
20:28:11 :: 
20:28:11 :: Rakudo provides an interactive command line interpreter (a so called Read Eval
20:28:11 :: Print Loop, REPL for short) you can use to quickly try out pieces of Raku code.
20:28:11 :: Start it by typing:
20:28:11 :: 
20:28:11 ::     raku
20:28:11 :: 
20:28:11 :: If you already have a Raku program in a file, you can run it by typing:
20:28:11 :: 
20:28:11 ::     raku path/to/my/program.raku
20:28:11 :: 
20:28:11 :: To install additional modules you can use the Zef module manager:
20:28:11 :: 
20:28:11 ::     zef install Some::Module
20:28:11 :: 
20:28:11 :: https://rakudo.org/           - The home of this implementation of Raku.
20:28:11 :: https://raku.land/            - Go here to browse for Raku modules.
20:28:11 :: https://docs.raku.org/        - The Raku documentation.
20:28:11 :: https://web.libera.chat/#raku - The Raku user chat. Talk to us!
20:28:11 :: 
20:28:11 ::                               Happy hacking!
20:28:11 :: 
20:28:11 :: ================================================================================
20:28:11 :: 
20:28:11 :: /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.07-01-linux-x86_64-gcc/bin/raku
20:28:11 :: /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.07-01-linux-x86_64-gcc/share/perl6/site/bin/zef
20:28:11 :: Welcome to Rakudo™ v2022.07.
20:28:11 :: Implementing the Raku® Programming Language v6.d.
20:28:11 :: Built on MoarVM version 2022.07.
20:28:29 :: v0.14.5
20:28:44 :: ===> Searching for missing dependencies: Font::AFM:ver<1.24.6+>, Font::FreeType:ver<0.4.3+>, Hash::int, Native::Packing, PDF::Content:ver<0.6.12+>, PDF::Lite:ver<0.0.11+>, PDF:ver<0.5.4+>
20:32:31 :: ===> Searching for missing dependencies: Compress::Zlib, Method::Also, PDF::Grammar:ver<0.3.1+>, are, Base64::Native, Color, Compress::Zlib::Raw, PDF::Grammar:ver<0.3.0+>, LibraryMake
20:32:31 :: ===> Searching for missing dependencies: Shell::Command
20:32:31 :: ===> Searching for missing dependencies: File::Which, File::Find
20:32:31 :: ===> Building: Base64::Native:ver<0.0.8>:auth<zef:dwarring>
20:32:31 :: ===> Building [OK] for Base64::Native:ver<0.0.8>:auth<zef:dwarring>
20:32:31 :: ===> Building: Font::FreeType:ver<0.4.9>:auth<zef:dwarring>
20:32:31 :: ===> Building [OK] for Font::FreeType:ver<0.4.9>:auth<zef:dwarring>
20:32:31 :: ===> Installing: Compress::Zlib::Raw:ver<1.0.1>
20:32:31 :: ===> Installing: Compress::Zlib:ver<1.1.0>
20:32:31 :: ===> Installing: Hash::int:ver<0.0.5>:auth<zef:lizmat>
20:32:31 :: ===> Installing: Method::Also:ver<0.0.8>:auth<zef:lizmat>
20:32:31 :: ===> Installing: PDF::Grammar:ver<0.3.1>:auth<zef:dwarring>
20:32:31 :: ===> Installing: PDF:ver<0.5.18>:auth<zef:dwarring>
20:32:31 :: ===> Installing: Native::Packing:ver<0.0.6>:auth<zef:dwarring>
20:32:31 :: ===> Installing: are:ver<0.0.1>:auth<zef:lizmat>
20:32:31 :: ===> Installing: File::Which:ver<1.0.4>
20:32:31 :: ===> Installing: File::Find:ver<0.1.1>
20:32:31 :: ===> Installing: Shell::Command
20:32:31 :: ===> Installing: LibraryMake:ver<1.0.0>
20:32:31 :: ===> Installing: Base64::Native:ver<0.0.8>:auth<zef:dwarring>
20:32:31 :: ===> Installing: Color:ver<1.004001>:auth<zef:raku-community-modules>
20:32:31 :: ===> Installing: Font::AFM:ver<1.24.7>:auth<zef:dwarring>
20:32:31 :: ===> Installing: PDF::Content:ver<0.6.12>:auth<zef:dwarring>
20:32:31 :: ===> Installing: PDF::Lite:ver<0.0.14>:auth<zef:dwarring>
20:32:31 :: ===> Installing: Font::FreeType:ver<0.4.9>:auth<zef:dwarring>
20:32:31 :: 
20:32:31 :: 2 bin/ scripts [pdf-rewriter.raku font-say] installed to:
20:32:31 :: /home/worker/.raku/bin
20:32:33 :: ===> Testing: PDF::Font::Loader:ver<0.6.13>:auth<cpan:WARRINGD>
20:33:31 :: [PDF::Font::Loader] FontConfig is required for the find-font method
20:33:31 :: [PDF::Font::Loader]   in block  at t/reuse-type1.t line 22
20:33:31 :: [PDF::Font::Loader] FontConfig is required for the find-font method
20:33:31 :: [PDF::Font::Loader]   in block  at t/reuse-type1.t line 22
20:33:31 :: [PDF::Font::Loader] FontConfig is required for the find-font method
20:33:31 :: [PDF::Font::Loader]   in block  at t/reuse-unembedded.t line 17
20:33:31 :: [PDF::Font::Loader] FontConfig is required for the find-font method
20:33:31 :: [PDF::Font::Loader]   in block  at t/reuse-unembedded.t line 32
20:33:31 :: [PDF::Font::Loader] FontConfig is required for the find-font method
20:33:31 :: [PDF::Font::Loader]   in block  at t/type3-basic.t line 22
20:33:31 :: [PDF::Font::Loader] unable to locate font. Falling back to mono-spaced font
20:33:31 :: [PDF::Font::Loader] loading font: courier -> /var/.sparrowdo/env/main/.sparrowdo/source/resources/font/FreeMono.ttf
20:33:31 :: ===> Testing [FAIL]: PDF::Font::Loader:ver<0.6.13>:auth<cpan:WARRINGD>
[task stderr]
20:33:31 :: Aborting due to test failure: PDF::Font::Loader:ver<0.6.13>:auth<cpan:WARRINGD> (use --force-test to override)
[task run: task.bash - tasks/multi-versions]
[dump code: task.bash]
[1] set -e
[2] 
[3] echo "Linux version: $os"
[4] 
[5] curl -sL https://rakudo.org/dl/rakudo/rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz \
[6] -o rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz
[7] tar -xzf rakudo-moar-$version-01-linux-x86_64-gcc.tar.gz          
[8] eval "$(rakudo-moar-$version-01-linux-x86_64-gcc/scripts/set-env.sh)"
[9] 
[10] which raku
[11] which zef
[12] 
[13] raku --version
[14] zef --version
[15] 
[16] cd source/
[17] zef install . --deps-only --test-depends --build-depends --/test -to=home         
[18] /usr/bin/time -f "%E real,%U user,%S sys / CPU Percentage: %P" -o "${cache_root_dir}/${version}_time" \
[19] zef test . && touch "${cache_root_dir}/${version}_ok"
[20] 
[task stdout]
20:33:31 :: Linux version: debian
20:33:33 ::                            Adding Rakudo to PATH
20:33:33 ::                           =======================
20:33:33 :: 
20:33:33 :: Paths successfully added.
20:33:33 :: 
20:33:33 :: ================================================================================
20:33:33 ::  =========                                                             __   __
20:33:33 ::   ||_|_||                =============================                (  \,/  )
20:33:33 ::   || # ||                 Welcome to the Raku Console                  \_ O _/
20:33:33 ::   || # ||                =============================                 (_/ \_)
20:33:33 :: 
20:33:33 :: This console has all the tools available you need to get started using Raku.
20:33:33 :: 
20:33:33 :: Rakudo provides an interactive command line interpreter (a so called Read Eval
20:33:33 :: Print Loop, REPL for short) you can use to quickly try out pieces of Raku code.
20:33:33 :: Start it by typing:
20:33:33 :: 
20:33:33 ::     raku
20:33:33 :: 
20:33:33 :: If you already have a Raku program in a file, you can run it by typing:
20:33:33 :: 
20:33:33 ::     raku path/to/my/program.raku
20:33:33 :: 
20:33:33 :: To install additional modules you can use the Zef module manager:
20:33:33 :: 
20:33:33 ::     zef install Some::Module
20:33:33 :: 
20:33:33 :: https://rakudo.org/           - The home of this implementation of Raku.
20:33:33 :: https://raku.land/            - Go here to browse for Raku modules.
20:33:33 :: https://docs.raku.org/        - The Raku documentation.
20:33:33 :: https://web.libera.chat/#raku - The Raku user chat. Talk to us!
20:33:33 :: 
20:33:33 ::                               Happy hacking!
20:33:33 :: 
20:33:33 :: ================================================================================
20:33:33 :: 
20:33:33 :: /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.06-01-linux-x86_64-gcc/bin/raku
20:33:33 :: /var/.sparrowdo/env/main/.sparrowdo/rakudo-moar-2022.06-01-linux-x86_64-gcc/share/perl6/site/bin/zef
20:33:33 :: Welcome to Rakudo™ v2022.06.
20:33:33 :: Implementing the Raku® Programming Language v6.d.
20:33:33 :: Built on MoarVM version 2022.06.
20:33:52 :: v0.14.5
20:34:08 :: ===> Testing: PDF::Font::Loader:ver<0.6.13>:auth<cpan:WARRINGD>
20:36:56 :: [PDF::Font::Loader] FontConfig is required for the find-font method
20:36:56 :: [PDF::Font::Loader]   in block  at t/reuse-type1.t line 22
20:36:56 :: [PDF::Font::Loader] FontConfig is required for the find-font method
20:36:56 :: [PDF::Font::Loader]   in block  at t/reuse-type1.t line 22
20:36:56 :: [PDF::Font::Loader] FontConfig is required for the find-font method
20:36:56 :: [PDF::Font::Loader]   in block  at t/reuse-unembedded.t line 17
20:36:56 :: [PDF::Font::Loader] FontConfig is required for the find-font method
20:36:56 :: [PDF::Font::Loader]   in block  at t/reuse-unembedded.t line 32
20:36:56 :: [PDF::Font::Loader] FontConfig is required for the find-font method
20:36:56 :: [PDF::Font::Loader]   in block  at t/type3-basic.t line 22
20:36:56 :: [PDF::Font::Loader] unable to locate font. Falling back to mono-spaced font
20:36:56 :: [PDF::Font::Loader] loading font: courier -> /var/.sparrowdo/env/main/.sparrowdo/source/resources/font/FreeMono.ttf
20:36:56 :: ===> Testing [OK] for PDF::Font::Loader:ver<0.6.13>:auth<cpan:WARRINGD>
[task stderr]
20:36:56 :: 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]
20:26:56 :: [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
20:26:59 :: [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]
20:27: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]
20:37:01 :: O----------------O--------O-----------------------------------------------------------O------------O
20:37:01 :: | Rakudo Version | Status | Time                                                      | Linux Dist |
20:37:01 :: O================O========O===========================================================O============O
20:37:01 :: | 2022.07        | FAIL   | Command exited with non-zero status 1                     | debian     |
20:37:01 :: |                |        | 0:59.92 real,88.06 user,5.17 sys / CPU Percentage: 155%   |            |
20:37:01 :: | 2022.06        | OK     | 2:49.07 real,255.59 user,15.02 sys / CPU Percentage: 160% | debian     |
20:37:01 :: ----------------------------------------------------------------------------------------------------
[task stderr]
20:37:01 :: some tests failed
20:37:01 ::   in block <unit> at /var/.sparrowdo/env/main/.sparrowdo/tasks/main/task.raku line 11
20:37:01 :: 
20:37:01 :: task exit status: 1
20:37:01 :: 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/sparrow/.rakubrew/versions/moar-2022.12/share/perl6/site/resources/D89191B85489D8D1AA2CA29B23BB54732926E4C8 line 13
  in sub MAIN at /home/sparrow/.rakubrew/versions/moar-2022.12/share/perl6/site/bin/sparrowdo line 3
  in block <unit> at /home/sparrow/.rakubrew/versions/moar-2022.12/share/perl6/site/bin/sparrowdo line 1