GitLabCi Service imtegration
This commit is contained in:
parent
8500743464
commit
406a0c809b
16 changed files with 158 additions and 7 deletions
29
app/models/gitlab_ci_service.rb
Normal file
29
app/models/gitlab_ci_service.rb
Normal file
|
@ -0,0 +1,29 @@
|
|||
# == Schema Information
|
||||
#
|
||||
# Table name: services
|
||||
#
|
||||
# id :integer not null, primary key
|
||||
# type :string(255)
|
||||
# title :string(255)
|
||||
# token :string(255)
|
||||
# project_id :integer not null
|
||||
# created_at :datetime not null
|
||||
# updated_at :datetime not null
|
||||
#
|
||||
|
||||
class GitlabCiService < Service
|
||||
attr_accessible :project_url
|
||||
|
||||
validates :project_url, presence: true
|
||||
validates :token, presence: true
|
||||
|
||||
delegate :execute, to: :service_hook, prefix: nil
|
||||
|
||||
after_save :compose_service_hook
|
||||
|
||||
def compose_service_hook
|
||||
hook = service_hook || build_service_hook
|
||||
hook.url = [project_url, "/build", "?token=#{token}"].join("")
|
||||
hook.save
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue