Project: rakudo-head

Build now

Configuration

sparrowdo:
  no_sudo: true
  no_index_update: false
  bootstrap: false
  format: default
  repo: https://sparrowhub.io/repo
  tags: >
      SCM_URL=https://github.com/rakudo/rakudo.git,
      SCM_SHA=HEAD,
      SCM_BRANCH=main
disabled: false
keep_builds: 100
allow_manual_run: true
scm:
  url: https://github.com/rakudo/rakudo.git
  branch: main
downstream: gh-melezhik-r3tool  

Job

#!raku

say "=========================";
say "commit: {tags()<SCM_SHA>}";
say "=========================";

bash qq:to /BASH/, %( cwd => "{$*CWD}/files", description => "rakudo build" );
docker build Dockerfiles/ \\
--build-arg SHA={tags()<SCM_SHA>} \\
-f Dockerfiles/sparrow.alpine.arm.head \\
-t melezhik/sparrow:alpine_arm_head \\
--progress=plain 2>\&1
BASH