Class: Pindo::TaskSystem::AndroidReleaseBuildTask

Inherits:
AndroidDevBuildTask show all
Defined in:
lib/pindo/module/task/model/build/android_release_build_task.rb

Overview

Android Release 模式构建任务使用 Release 模式编译 Android 工程

Instance Attribute Summary

Attributes inherited from BuildTask

#mode, #output_path, #platform, #project_path

Attributes inherited from PindoTask

#callbacks_setup, #context, #created_at, #dependencies, #error, #finished_at, #id, #metadata, #name, #priority, #result, #retry_count, #retry_delay, #retry_mode, #started_at, #status, #type

Instance Method Summary collapse

Methods included from Githelper

#add_branch, #add_tag, #add_tag_with_check, #clone_clang_repo, #clone_devclang_repo, #clone_pindo_common_config_repo, #clone_pindo_env_config_repo, #clong_buildconfig_repo, #get_repo_base_name, #getcode_to_dir, #git_addpush_repo, #git_latest_commit_id, #git_root_directory, #is_git_directory?, #local_branch_exists?, #local_tag_exists?, #prepare_gitenv, #process_need_add_files, #remote_branch_exists?, #remote_tag_exists?, #remove_branch, #remove_tag

Methods included from Executable

capture_command, #executable, execute_command, which, which!

Methods inherited from BuildTask

create_android_task, create_ios_task, create_task, create_web_task, default_retry_count, default_retry_delay, default_retry_mode, normalize_mode, normalize_platform, task_type

Methods inherited from PindoTask

#before_retry, #cancel, #cancelled?, #check_cancelled!, default_retry_count, default_retry_delay, default_retry_mode, #do_task, #execution_time, #finished?, #on, #reset_for_retry, #retryable?, #running?, #should_retry?, task_type, #validate

Constructor Details

#initialize(options = {}) ⇒ AndroidReleaseBuildTask

Returns a new instance of AndroidReleaseBuildTask.



8
9
10
11
# File 'lib/pindo/module/task/model/build/android_release_build_task.rb', line 8

def initialize(options = {})
  super(options)
  @mode = :release
end