Class: TravisBundleCache::Cache
- Inherits:
-
Object
- Object
- TravisBundleCache::Cache
- Defined in:
- lib/travis_bundle_cache/cache.rb
Instance Method Summary collapse
- #archive_and_upload_bundle ⇒ Object
- #cache_bundle ⇒ Object
-
#initialize ⇒ Cache
constructor
A new instance of Cache.
- #install ⇒ Object
Constructor Details
#initialize ⇒ Cache
Returns a new instance of Cache.
6 7 8 9 10 11 12 13 14 |
# File 'lib/travis_bundle_cache/cache.rb', line 6 def initialize @bucket_name = ENV["AWS_S3_BUCKET"] @architecture = `uname -m`.strip @file_name = "#{ENV['BUNDLE_ARCHIVE']}-#{@architecture}.tgz" @file_path = File.("~/#{@file_name}") @lock_file = File.join(File.(ENV["TRAVIS_BUILD_DIR"]), "Gemfile.lock") @digest_filename = "#{@file_name}.sha2" @old_digest_filename = File.("~/remote_#{@digest_filename}") end |
Instance Method Details
#archive_and_upload_bundle ⇒ Object
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
# File 'lib/travis_bundle_cache/cache.rb', line 34 def archive_and_upload_bundle if @old_digest == "" puts "=> There was no existing digest, uploading a new version of the archive" else puts "=> There were changes, uploading a new version of the archive" puts " => Old checksum: #{@old_digest}" puts " => New checksum: #{@bundle_digest}" end puts "=> Preparing bundle archive" `cd ~ && tar -cjf "#{@file_name}" .bundle && split -b 5m -a 3 "#{@file_name}" "#{@file_name}."` parts_pattern = File.(File.join("~", "#{@file_name}.*")) parts = Dir.glob(parts_pattern).sort puts "=> Uploading the bundle" puts " => Beginning multipart upload" response = storage.initiate_multipart_upload @bucket_name, @file_name, { "x-amz-acl" => "public-read" } upload_id = response.body['UploadId'] puts " => Upload ID: #{upload_id}" part_ids = [] puts " => Uploading #{parts.length} parts" parts.each_with_index do |part, index| part_number = (index + 1).to_s puts " => Uploading #{part}" File.open part do |part_file| response = storage.upload_part @bucket_name, @file_name, upload_id, part_number, part_file part_ids << response.headers['ETag'] puts " => Uploaded" end end puts " => Completing multipart upload" storage.complete_multipart_upload @bucket_name, @file_name, upload_id, part_ids puts "=> Uploading the digest file" bucket = storage.directories.new(key: @bucket_name) bucket.files.create({ :body => @bundle_digest, :key => @digest_filename, :public => true, :content_type => "text/plain" }) puts "All done now." end |
#cache_bundle ⇒ Object
22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/travis_bundle_cache/cache.rb', line 22 def cache_bundle puts "Checking for changes" @bundle_digest = Digest::SHA2.file(@lock_file).hexdigest @old_digest = File.exists?(@old_digest_filename) ? File.read(@old_digest_filename) : "" if @bundle_digest == @old_digest puts "=> There were no changes, doing nothing" else archive_and_upload_bundle end end |
#install ⇒ Object
16 17 18 19 20 |
# File 'lib/travis_bundle_cache/cache.rb', line 16 def install run_command %(cd ~ && wget -O "remote_#{@file_name}" "https://#{@bucket_name}.s3.amazonaws.com/#{@file_name}" && tar -xf "remote_#{@file_name}") run_command %(cd ~ && wget -O "remote_#{@file_name}.sha2" "https://#{@bucket_name}.s3.amazonaws.com/#{@file_name}.sha2") run_command %(bundle install --without #{ENV['BUNDLE_WITHOUT'] || "development production"} --path=~/.bundle) end |