2021-11-13 19:18:06 +00:00
|
|
|
// Copyright 2021 Woodpecker Authors
|
2018-02-19 22:24:10 +00:00
|
|
|
// Copyright 2018 Drone.IO Inc.
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
package model
|
|
|
|
|
2016-03-31 06:24:47 +00:00
|
|
|
// swagger:model build
|
2015-06-23 03:45:08 +00:00
|
|
|
type Build struct {
|
2021-12-11 01:37:40 +00:00
|
|
|
ID int64 `json:"id" xorm:"pk autoincr 'build_id'"`
|
|
|
|
RepoID int64 `json:"-" xorm:"UNIQUE(s) INDEX 'build_repo_id'"`
|
|
|
|
Number int64 `json:"number" xorm:"UNIQUE(s) 'build_number'"`
|
|
|
|
Author string `json:"author" xorm:"INDEX 'build_author'"`
|
|
|
|
ConfigID int64 `json:"-" xorm:"build_config_id"`
|
|
|
|
Parent int64 `json:"parent" xorm:"build_parent"`
|
|
|
|
Event WebhookEvent `json:"event" xorm:"build_event"`
|
|
|
|
Status StatusValue `json:"status" xorm:"INDEX 'build_status'"`
|
|
|
|
Error string `json:"error" xorm:"build_error"`
|
|
|
|
Enqueued int64 `json:"enqueued_at" xorm:"build_enqueued"`
|
|
|
|
Created int64 `json:"created_at" xorm:"build_created"`
|
2022-01-31 14:38:39 +00:00
|
|
|
Updated int64 `json:"updated_at" xorm:"updated NOT NULL DEFAULT 0 'updated'"`
|
2021-12-11 01:37:40 +00:00
|
|
|
Started int64 `json:"started_at" xorm:"build_started"`
|
|
|
|
Finished int64 `json:"finished_at" xorm:"build_finished"`
|
|
|
|
Deploy string `json:"deploy_to" xorm:"build_deploy"`
|
|
|
|
Commit string `json:"commit" xorm:"build_commit"`
|
|
|
|
Branch string `json:"branch" xorm:"build_branch"`
|
|
|
|
Ref string `json:"ref" xorm:"build_ref"`
|
|
|
|
Refspec string `json:"refspec" xorm:"build_refspec"`
|
|
|
|
Remote string `json:"remote" xorm:"build_remote"`
|
|
|
|
Title string `json:"title" xorm:"build_title"`
|
|
|
|
Message string `json:"message" xorm:"build_message"`
|
|
|
|
Timestamp int64 `json:"timestamp" xorm:"build_timestamp"`
|
|
|
|
Sender string `json:"sender" xorm:"build_sender"`
|
|
|
|
Avatar string `json:"author_avatar" xorm:"build_avatar"`
|
|
|
|
Email string `json:"author_email" xorm:"build_email"`
|
|
|
|
Link string `json:"link_url" xorm:"build_link"`
|
|
|
|
Signed bool `json:"signed" xorm:"build_signed"` // deprecate
|
|
|
|
Verified bool `json:"verified" xorm:"build_verified"` // deprecate
|
|
|
|
Reviewer string `json:"reviewed_by" xorm:"build_reviewer"`
|
|
|
|
Reviewed int64 `json:"reviewed_at" xorm:"build_reviewed"`
|
|
|
|
Procs []*Proc `json:"procs,omitempty" xorm:"-"`
|
|
|
|
Files []*File `json:"files,omitempty" xorm:"-"`
|
|
|
|
ChangedFiles []string `json:"changed_files,omitempty" xorm:"json 'changed_files'"`
|
2015-09-30 01:21:17 +00:00
|
|
|
}
|
|
|
|
|
2021-11-13 19:18:06 +00:00
|
|
|
// TableName return database table name for xorm
|
|
|
|
func (Build) TableName() string {
|
|
|
|
return "builds"
|
2015-09-30 01:21:17 +00:00
|
|
|
}
|
2022-06-16 13:35:58 +00:00
|
|
|
|
|
|
|
type UpdateBuildStore interface {
|
|
|
|
UpdateBuild(*Build) error
|
|
|
|
}
|