Class: Vx::Builder::ScriptBuilder::Rust
- Defined in:
- lib/vx/builder/script_builder/rust.rb
Constant Summary collapse
- DEFAULT_RUST =
'0.11.0'
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
#deploy?, #do_after_deploy, #do_announce, #do_before_deploy, #do_before_install, #do_before_script, #do_cache_key, #do_cached_directories, #do_deploy_script, #do_init, #do_install, #do_script
Methods included from Helper::VxvmInstall
Methods included from Helper::TraceShCommand
Instance Method Details
#call(env) ⇒ Object
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/vx/builder/script_builder/rust.rb', line 9 def call(env) if enabled?(env) vxvm_install(env, 'rust', rust_version(env)) do_cache_key(env) do |i| i << "rust-#{rust_version env}" end do_install(env) do |i| i << trace_sh_command("git submodule init") i << trace_sh_command("git submodule update") end do_announce(env) do |i| i << trace_sh_command("rustc --version") end do_script(env) do |i| i << trace_sh_command("if [ -f Makefile ] ; then make ; fi", trace: "make") end end app.call(env) end |