Project: melezhik-Sparrow6-sandbox

Build now

Configuration

sparrowdo:
  no_sudo: true
  no_index_update: false
  bootstrap: false
  format: default
  repo: https://sparrowhub.io/repo
  localhost: true
  tags: >
      SCM_URL=https://github.com/melezhik/ditana-installer.git,
      SCM_SHA=HEAD,
      SCM_BRANCH=testing
disabled: false
keep_builds: 100
allow_manual_run: true
scm:
  url: https://github.com/melezhik/ditana-installer.git
  branch: testing

Job

#!raku

use Sparky::JobApi;

%*ENV<SP6_DUMP_TASK_CODE> = False;

directory "scm";

zef "https://github.com/melezhik/Sparrow6.git",%(
 :force, :notest,
);

#git-scm tags()<SCM_URL>, %(
#  to => "scm",
#  branch => tags<SCM_BRANCH>
#);


git-scm "https://github.com/melezhik/ditana-installer.git", %(
  to => "scm",
  branch => "testing",
);

bash q:to /BASH/, %( :cwd("$*CWD/scm/tests/configuration") );
export SP6_DUMP_TASK_CODE=0
#export SP6_DEBUG_TASK_CHECK=1
#export SP6_DEBUG=1
tomty --color --all --show-failed
#tomty --color --all --verbose
BASH