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

SparrowCI Report - gh-avuserow-raku-audio-taglib | [image: melezhik/sparrow:archlinux]

  • Summary
  • Pipeline YAML
  • Report
BuildID: 3314
Status: FAIL
Image: melezhik/sparrow:archlinux
Worker status: OK
---
Date: 13.05.2023 @ 04:35
Time elapsed: 500 sec
---
SCM: https://github.com/avuserow/raku-audio-taglib.git
Git sha: 70a4016
Git comment: 0.0.5
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.04
        - 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          
          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
          zef build .
          
          /usr/bin/time -o "${cache_root_dir}/${version}_time" \
          zef test . && touch "${cache_root_dir}/${version}_ok"
          
    depends:
      -
        name: install-deps
  -
    name: install-deps
    language: Bash
    code: |
      if test $os = "alpine"; then
        sudo apk add taglib-dev zlib-dev 
      elif test $os = "debian"; then
        sudo apt-get install -y libtag1-dev zlib1g-dev time 
      elif test $os = "ubuntu"; then
        sudo apt-get install -y libtag1-dev zlib1g-dev time 
      elif test $os = "arch"; then
        sudo pacman -S --needed --noconfirm -q taglib zlib time
      fi  
      zef install --/test Text::Table::Simple
 
04:35:04 :: [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 = "alpine"; then
[2]   sudo apk add taglib-dev zlib-dev 
[3] elif test $os = "debian"; then
[4]   sudo apt-get install -y libtag1-dev zlib1g-dev time 
[5] elif test $os = "ubuntu"; then
[6]   sudo apt-get install -y libtag1-dev zlib1g-dev time 
[7] elif test $os = "arch"; then
[8]   sudo pacman -S --needed --noconfirm -q taglib zlib time
[9] fi  
[10] zef install --/test Text::Table::Simple
[11] 
[task stdout]
04:35:06 :: resolving dependencies...
04:35:06 :: looking for conflicting packages...
04:35:06 :: 
04:35:06 :: Package (2)     New Version  Net Change  Download Size
04:35:06 :: 
04:35:06 :: extra/taglib    1.13-1         1.62 MiB       0.36 MiB
04:35:06 :: community/time  1.9-4          0.04 MiB       0.02 MiB
04:35:06 :: 
04:35:06 :: Total Download Size:   0.39 MiB
04:35:06 :: Total Installed Size:  1.66 MiB
04:35:06 :: 
04:35:06 :: :: Proceed with installation? [Y/n] 
04:35:06 :: :: Retrieving packages...
04:35:07 ::  taglib-1.13-1-x86_64 downloading...
04:35:07 ::  time-1.9-4-x86_64 downloading...
04:35:07 :: checking keyring...
04:35:08 :: checking package integrity...
04:35:08 :: loading package files...
04:35:08 :: checking for file conflicts...
04:35:08 :: :: Processing package changes...
04:35:08 :: installing taglib...
04:35:08 :: installing time...
04:35:08 :: :: Running post-transaction hooks...
04:35:08 :: (1/1) Arming ConditionNeedsUpdate...
04:35:09 :: ===> Searching for: Text::Table::Simple
04:35:21 :: ===> Installing: Text::Table::Simple:ver<0.1.0>:auth<github:ugexe>
[task stderr]
04:35:21 :: warning: zlib-1:1.2.13-2 is up to date -- skipping
04:35:21 :: ===> Updating fez mirror: https://360.zef.pm/
04:35:21 :: ===> Updated fez mirror: https://360.zef.pm/
04:35:21 :: ===> Updating rea mirror: https://raw.githubusercontent.com/Raku/REA/main/META.json
04:35:21 :: ===> Updated rea mirror: https://raw.githubusercontent.com/Raku/REA/main/META.json
04:34:50 :: [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

04:34:23 :: [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
04:34:26 :: [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]
04:34:28 :: 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