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

SparrowCI Report - git-dwarring-LibXML-raku | [image: melezhik/sparrow:debian]

  • Summary
  • Pipeline YAML
  • Report
BuildID: 2871
Status: FAIL
Image: melezhik/sparrow:debian
Worker status: OK
---
Date: 06.02.2023 @ 18:42
Time elapsed: 112 sec
---
SCM: https://github.com/libxml-raku/LibXML-raku
Git sha: 316f86b
Git comment: implement DLL demangle/install for Windows #66
image:
  - melezhik/sparrow:debian
  # - melezhik/sparrow:ubuntu
  # - melezhik/sparrow:archlinux
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.06
        - 2022.07
    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
          echo "activating rakudo version $version ..."
          eval "$(rakudo-moar-$version-01-linux-x86_64-gcc/scripts/set-env.sh)" > /dev/null 

          which raku
          which zef

          raku --version
          zef --version
          
          cd source/
          
          zef install . --deps-only --test-depends --build-depends --/test --to=home
          zef build .
          
          /usr/bin/time -o "${cache_root_dir}/${version}_time" \
          zef test . --verbose && touch "${cache_root_dir}/${version}_ok"
          
    depends:
      -
        name: install-deps
  -
    name: install-deps
    language: Bash
    code: |
      if test $os = "debian"; then
        sudo apt-get install -y libxml2-dev libxslt-dev time 
      elif test $os = "ubuntu"; then
        sudo apt-get install -y libxml2-dev libxslt-dev time 
      elif test $os = "arch"; then
        sudo pacman -S --needed --noconfirm -q libxml2 libxslt  time
      fi  
      zef install --/test Text::Table::Simple
18:42:32 :: [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] if test $os = "debian"; then
[2]   sudo apt-get install -y libxml2-dev libxslt-dev time 
[3] elif test $os = "ubuntu"; then
[4]   sudo apt-get install -y libxml2-dev libxslt-dev time 
[5] elif test $os = "arch"; then
[6]   sudo pacman -S --needed --noconfirm -q libxml2 libxslt  time
[7] fi  
[8] zef install --/test Text::Table::Simple
[9] 
[task stdout]
18:42:34 :: Reading package lists...
18:42:34 :: Building dependency tree...
18:42:34 :: Reading state information...
18:42:35 :: The following additional packages will be installed:
18:42:35 ::   icu-devtools libicu-dev libicu67 libxml2 libxslt1.1
18:42:35 :: Suggested packages:
18:42:35 ::   icu-doc pkg-config
18:42:35 :: The following NEW packages will be installed:
18:42:35 ::   icu-devtools libicu-dev libicu67 libxml2 libxml2-dev libxslt1-dev libxslt1.1
18:42:35 ::   time
18:42:35 :: 0 upgraded, 8 newly installed, 0 to remove and 0 not upgraded.
18:42:35 :: Need to get 20.5 MB of archives.
18:42:35 :: After this operation, 88.0 MB of additional disk space will be used.
18:42:35 :: Get:1 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB]
18:42:35 :: Get:2 http://deb.debian.org/debian bullseye/main amd64 icu-devtools amd64 67.1-7 [201 kB]
18:42:35 :: Get:3 http://deb.debian.org/debian bullseye/main amd64 libicu-dev amd64 67.1-7 [9597 kB]
18:42:35 :: Get:4 http://deb.debian.org/debian-security bullseye-security/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u3 [693 kB]
18:42:35 :: Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 libxml2-dev amd64 2.9.10+dfsg-6.7+deb11u3 [790 kB]
18:42:35 :: Get:6 http://deb.debian.org/debian bullseye/main amd64 libxslt1.1 amd64 1.1.34-4+deb11u1 [240 kB]
18:42:35 :: Get:7 http://deb.debian.org/debian bullseye/main amd64 libxslt1-dev amd64 1.1.34-4+deb11u1 [329 kB]
18:42:35 :: Get:8 http://deb.debian.org/debian bullseye/main amd64 time amd64 1.9-0.1 [50.8 kB]
18:42:35 :: Fetched 20.5 MB in 0s (133 MB/s)
18:42:35 :: Selecting previously unselected package libicu67:amd64.
18:42:35 :: (Reading database ... 
18:42:35 :: (Reading database ... 5%
18:42:35 :: (Reading database ... 10%
18:42:35 :: (Reading database ... 15%
18:42:35 :: (Reading database ... 20%
18:42:35 :: (Reading database ... 25%
18:42:35 :: (Reading database ... 30%
18:42:35 :: (Reading database ... 35%
18:42:35 :: (Reading database ... 40%
18:42:35 :: (Reading database ... 45%
18:42:35 :: (Reading database ... 50%
18:42:35 :: (Reading database ... 55%
18:42:35 :: (Reading database ... 60%
18:42:35 :: (Reading database ... 65%
18:42:35 :: (Reading database ... 70%
18:42:35 :: (Reading database ... 75%
18:42:35 :: (Reading database ... 80%
18:42:35 :: (Reading database ... 85%
18:42:35 :: (Reading database ... 90%
18:42:35 :: (Reading database ... 95%
18:42:35 :: (Reading database ... 100%
18:42:35 :: (Reading database ... 19016 files and directories currently installed.)
18:42:35 :: Preparing to unpack .../0-libicu67_67.1-7_amd64.deb ...
18:42:35 :: Unpacking libicu67:amd64 (67.1-7) ...
18:42:36 :: Selecting previously unselected package icu-devtools.
18:42:36 :: Preparing to unpack .../1-icu-devtools_67.1-7_amd64.deb ...
18:42:36 :: Unpacking icu-devtools (67.1-7) ...
18:42:36 :: Selecting previously unselected package libicu-dev:amd64.
18:42:36 :: Preparing to unpack .../2-libicu-dev_67.1-7_amd64.deb ...
18:42:36 :: Unpacking libicu-dev:amd64 (67.1-7) ...
18:42:37 :: Selecting previously unselected package libxml2:amd64.
18:42:37 :: Preparing to unpack .../3-libxml2_2.9.10+dfsg-6.7+deb11u3_amd64.deb ...
18:42:37 :: Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u3) ...
18:42:37 :: Selecting previously unselected package libxml2-dev:amd64.
18:42:37 :: Preparing to unpack .../4-libxml2-dev_2.9.10+dfsg-6.7+deb11u3_amd64.deb ...
18:42:37 :: Unpacking libxml2-dev:amd64 (2.9.10+dfsg-6.7+deb11u3) ...
18:42:37 :: Selecting previously unselected package libxslt1.1:amd64.
18:42:37 :: Preparing to unpack .../5-libxslt1.1_1.1.34-4+deb11u1_amd64.deb ...
18:42:37 :: Unpacking libxslt1.1:amd64 (1.1.34-4+deb11u1) ...
18:42:37 :: Selecting previously unselected package libxslt1-dev:amd64.
18:42:37 :: Preparing to unpack .../6-libxslt1-dev_1.1.34-4+deb11u1_amd64.deb ...
18:42:37 :: Unpacking libxslt1-dev:amd64 (1.1.34-4+deb11u1) ...
18:42:37 :: Selecting previously unselected package time.
18:42:37 :: Preparing to unpack .../7-time_1.9-0.1_amd64.deb ...
18:42:37 :: Unpacking time (1.9-0.1) ...
18:42:38 :: Setting up time (1.9-0.1) ...
18:42:38 :: Setting up libicu67:amd64 (67.1-7) ...
18:42:38 :: Setting up icu-devtools (67.1-7) ...
18:42:38 :: Setting up libicu-dev:amd64 (67.1-7) ...
18:42:38 :: Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u3) ...
18:42:38 :: Setting up libxml2-dev:amd64 (2.9.10+dfsg-6.7+deb11u3) ...
18:42:38 :: Setting up libxslt1.1:amd64 (1.1.34-4+deb11u1) ...
18:42:38 :: Setting up libxslt1-dev:amd64 (1.1.34-4+deb11u1) ...
18:42:38 :: Processing triggers for libc-bin (2.31-13+deb11u5) ...
18:42:40 :: ===> Searching for: Text::Table::Simple
18:42:50 :: ===> Installing: Text::Table::Simple:ver<0.1.0>:auth<github:ugexe>
[task stderr]
18:42:50 :: debconf: delaying package configuration, since apt-utils is not installed
18:42:50 :: ===> Updating fez mirror: https://360.zef.pm/
18:42:50 :: ===> Updated fez mirror: https://360.zef.pm/
18:42:50 :: ===> Updating rea mirror: https://raw.githubusercontent.com/Raku/REA/main/META.json
18:42:50 :: ===> Updated rea mirror: https://raw.githubusercontent.com/Raku/REA/main/META.json
18:42:17 :: [repository] - index updated from https://sparrowhub.io/repo/api/v1/index
run stage: run
some depends jobs failed or timeouted: ${:FAIL(0), :OK(0), :TIMEOUT(0)}
The spawned command 'docker exec -i sparrow-worker sh -l /var/.sparrowdo/env/multi-versions/.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

18:41:47 :: [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:41:50 :: [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:41:52 :: tar -xzf source.tar.gz 
some depends jobs failed or timeouted: ${:FAIL(1), :OK(0), :TIMEOUT(0)}
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