Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/api
diff options
context:
space:
mode:
authorMathieu Parent <math.parent@gmail.com>2019-05-15 16:32:18 +0300
committerMathieu Parent <math.parent@gmail.com>2019-07-03 17:18:05 +0300
commita7892e71714ad0f425547db12f205771dc270da5 (patch)
treeecdf94f67842dfc7ccccd38b7e23e9e9f5d2833e /lib/api
parent353e68772c8b57ef4a98be094f2674d28a2dedcd (diff)
Add build_timeout to project API
Diffstat (limited to 'lib/api')
-rw-r--r--lib/api/entities.rb1
-rw-r--r--lib/api/helpers/projects_helpers.rb2
2 files changed, 3 insertions, 0 deletions
diff --git a/lib/api/entities.rb b/lib/api/entities.rb
index 0389ff0e045..3bfaf63d912 100644
--- a/lib/api/entities.rb
+++ b/lib/api/entities.rb
@@ -278,6 +278,7 @@ module API
expose :build_git_strategy, if: lambda { |project, options| options[:user_can_admin_project] } do |project, options|
project.build_allow_git_fetch ? 'fetch' : 'clone'
end
+ expose :build_timeout
expose :ci_config_path, if: -> (project, options) { Ability.allowed?(options[:current_user], :download_code, project) }
expose :shared_with_groups do |project, options|
SharedGroup.represent(project.project_group_links, options)
diff --git a/lib/api/helpers/projects_helpers.rb b/lib/api/helpers/projects_helpers.rb
index bc847968c25..7a806839856 100644
--- a/lib/api/helpers/projects_helpers.rb
+++ b/lib/api/helpers/projects_helpers.rb
@@ -9,6 +9,7 @@ module API
params :optional_project_params_ce do
optional :description, type: String, desc: 'The description of the project'
optional :build_git_strategy, type: String, values: %w(fetch clone), desc: 'The Git strategy. Defaults to `fetch`'
+ optional :build_timeout, type: Integer, desc: 'Build timeout'
optional :ci_config_path, type: String, desc: 'The path to CI config file. Defaults to `.gitlab-ci.yml`'
# TODO: remove in API v5, replaced by *_access_level
@@ -60,6 +61,7 @@ module API
def self.update_params_at_least_one_of
[
:build_git_strategy,
+ :build_timeout,
:builds_access_level,
:ci_config_path,
:container_registry_enabled,