2020-10-24 23:57:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
module Ci
|
|
|
|
class Job < JobBasic
|
|
|
|
# artifacts_file is included in job_artifacts, but kept for backward compatibility (remove in api/v5)
|
|
|
|
expose :artifacts_file, using: ::API::Entities::Ci::JobArtifactFile, if: -> (job, opts) { job.artifacts? }
|
2023-01-13 00:05:48 +05:30
|
|
|
expose :job_artifacts, as: :artifacts,
|
|
|
|
using: ::API::Entities::Ci::JobArtifact,
|
|
|
|
documentation: { is_array: true }
|
2021-09-30 23:02:18 +05:30
|
|
|
expose :runner, with: ::API::Entities::Ci::Runner
|
2023-01-13 00:05:48 +05:30
|
|
|
expose :artifacts_expire_at,
|
|
|
|
documentation: { type: 'dateTime', example: '2016-01-19T09:05:50.355Z' }
|
|
|
|
|
|
|
|
expose(
|
|
|
|
:tag_list,
|
|
|
|
documentation: { type: 'string', is_array: true, example: ['ubuntu18', 'docker runner'] }
|
|
|
|
) do |job|
|
2021-03-11 19:13:27 +05:30
|
|
|
job.tags.map(&:name).sort
|
|
|
|
end
|
2020-10-24 23:57:45 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|