Project: debian-demo

Build now

Configuration

#crontab: "2 * * * *"
sparrowdo:
  no_sudo: true
  no_index_update: false
  bootstrap: false
  format: default
disabled: false
allow_manual_run: true
keep_builds: 5
vars:
  -
      name: scenario
      values: [ python-ssl, redis, nsd ]
      type: select
      default: python-ssl

Job

#!raku

use Sparky::JobApi;

my $scenario = tags()<scenario>;

bash "cat /etc/os-release > os-release.txt";

Sparky::JobApi.new(:mine).put-file("os-release.txt","os-release.txt");

say "scenario: $scenario";

say "===";

task-run "tasks/$scenario";