From 43616bb699dccad598c88df55682d2a7821ad7ee Mon Sep 17 00:00:00 2001 From: Tom Duffield Date: Thu, 20 Jul 2017 13:57:28 -0500 Subject: Update Expeditor config to use new Merge and Artifact Actions Chef Expeditor now supports built in merge and artifact actions which allow us to reduce the burden of duplicating common processes across all our repositories. This change introduces several of these built_in functions, replacing functionality that was previously kept in our Rakefile. Signed-off-by: Tom Duffield --- Rakefile | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'Rakefile') diff --git a/Rakefile b/Rakefile index f6e6758820..2ec934c432 100644 --- a/Rakefile +++ b/Rakefile @@ -27,9 +27,7 @@ require_relative "tasks/rspec" require_relative "tasks/maintainers" require_relative "tasks/cbgb" require_relative "tasks/dependencies" -require_relative "tasks/changelog" require_relative "tasks/announce" -require_relative "tasks/version" ChefConfig::PackageTask.new(File.expand_path("..", __FILE__), "Chef", "chef") do |package| package.component_paths = ["chef-config"] @@ -51,15 +49,6 @@ task :register_eventlog do end end -desc "Keep the Dockerfile up-to-date" -task :update_dockerfile do - require "mixlib/install" - latest_stable_version = Mixlib::Install.available_versions("chef", "stable").last - text = File.read("Dockerfile") - new_text = text.gsub(/^ARG VERSION=[\d\.]+$/, "ARG VERSION=#{latest_stable_version}") - File.open("Dockerfile", "w+") { |f| f.write(new_text) } -end - begin require "chefstyle" require "rubocop/rake_task" -- cgit v1.2.1