You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libshit/tools/ci_conf.base.rb

21 lines
416 B
Ruby

step :help do
fail "Did you really expect me to write a help?"
end
step :builtin_default_values
step :default_values, after: :builtin_default_values
step :prepare_checkout, after: :default_values
step :os_opts, before: :final_opts
step :final_opts, after: :prepare_checkout
step :build, after: :do_build
step :test, always_after: :final_opts, cond: -> { opt.mode != 'rel' }
step :dump do
p env
p opt
end