require 'logger' require 'tempfile' require 'yaml' require 'pathname' require 'forwardable' module Buildkite module Builder class Pipeline extend Forwardable include Definition::Helper include LoggingUtils using Rainbow PIPELINE_DEFINITION_FILE = Pathname.new('pipeline.rb').freeze def_delegator :@extensions, :use attr_reader :logger, :root, :artifacts, :plugins, :dsl, :data def initialize(root, logger: nil) @root = root @logger = logger || Logger.new(File::NULL) @artifacts = [] @plugins = {} @dsl = Dsl.new(self) @extensions = ExtensionManager.new(self) @data = Data.new use(Extensions::Use) use(Extensions::Lib) use(Extensions::Env) use(Extensions::Notify) use(Extensions::Steps) use(Extensions::SubPipelines) end def upload # Generate the pipeline YAML first. contents = to_yaml upload_artifacts # Upload the pipeline. Tempfile.create(['pipeline', '.yml']) do |file| file.sync = true file.write(contents) logger.info "+++ :pipeline: Uploading pipeline" unless Buildkite::Pipelines::Command.pipeline(:upload, file.path) logger.info "Pipeline upload failed, saving as artifact…" Buildkite::Pipelines::Command.artifact!(:upload, file.path) abort end logger.info "+++ :toolbox: Setting job meta-data to #{Buildkite.env.job_id.color(:yellow)}" Buildkite::Pipelines::Command.meta_data!(:set, Builder::META_DATA.fetch(:job), Buildkite.env.job_id) end end def to_h @pipeline_hash ||= begin results = benchmark("\nDone (%s)".color(:springgreen)) do dsl.instance_eval(&pipeline_definition) extensions.build end logger.info(results) # Build the pipeline definition from pipeline data. Pipelines::Helpers.sanitize(data.to_definition) end end def to_yaml YAML.dump(to_h) end private attr_reader :extensions def upload_artifacts return if artifacts.empty? logger.info "+++ :paperclip: Uploading artifacts" Buildkite::Pipelines::Command.artifact!(:upload, artifacts.join(";")) end def pipeline_definition @pipeline_definition ||= load_definition(root.join(PIPELINE_DEFINITION_FILE), Definition::Pipeline) end end end end