-
Notifications
You must be signed in to change notification settings - Fork 118
Merge jammy #545
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Merge jammy #545
Changes from 20 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
47f4f95
bump bosh-blobstore-gcs/0.0.376
435c123
[ci skip] bump OS image
6f0a721
CI: add git-lfs to the Docker container
aramprice d4fd5c2
Bump gems
cf-rabbit-bot 4c90383
bump bosh-blobstore-dav/0.0.473
2382aa4
[ci skip] bump OS image
c4685af
bump bosh-blobstore-gcs/0.0.377
f978dc3
[ci skip] bump OS image
feb7c16
[ci skip] bump OS image
fe2ab98
bump bosh-blobstore-azure-storage/0.0.229
851b2e4
[ci skip] bump OS image
cb67658
[ci skip] bump OS image
87117e8
[ci skip] bump OS image
2d879e0
[ci skip] bump OS image
bb375ad
bosh-stemcell: move deps to gemspec remove unused gems
aramprice 0806fab
Remove OSX spec options as they do not work
aramprice 5bc9f63
Remove unused rubycop config
aramprice add91a8
Introduce standardrb; fix linter issues
aramprice 229001f
Merge pull request #543 from cloudfoundry/deps-in-gemspec
aramprice c82bdee
Merge branch 'ubuntu-jammy' into merge-jammy
aramprice 196cb0a
Bump actions/upload-artifact from 4 to 7
dependabot[bot] f0cd334
StemcellBuilder needs to bundle install now
aramprice 037b146
Merge branch 'ubuntu-jammy' into merge-jammy
aramprice cd1edc8
Fix: remove vestiges of `vendor/`
aramprice 137df55
Fixes: cleanup from vendored gem usage
aramprice af56b89
CI: cleanup shell issues; fix bundler invocation
aramprice 62e0e36
Fix: invoke bundler in sudo
aramprice c349422
[ci skip] bump OS image
44e1e1b
CI: bundle as ubuntu; add `set -e` for sudo scripts
aramprice d69fd55
Fix: rake, rspec, etc are non-dev dependencies
aramprice f56d3fa
Merge branch 'ubuntu-jammy' into merge-jammy
aramprice File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,4 @@ | ||
| source 'https://rubygems.org' | ||
|
|
||
| group :development, :test do | ||
| gem 'bosh-stemcell', path: 'bosh-stemcell' | ||
| gem 'fakefs' | ||
| gem 'logging' | ||
| gem 'rake' | ||
| gem 'rspec' | ||
| gem 'rspec-instafail' | ||
| gem 'rspec-its' | ||
| gem 'timecop' | ||
| end | ||
| gem 'rake' | ||
| gem 'bosh-stemcell', path: 'bosh-stemcell' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,4 @@ | ||
| require 'json' | ||
| require 'logging' | ||
|
|
||
| namespace :stemcell do | ||
| desc 'Build a base OS image for use in stemcells' | ||
|
|
||
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| source "https://rubygems.org" | ||
|
|
||
| gemspec |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| require "rspec/core/rake_task" | ||
| require "standard/rake" | ||
|
|
||
| task default: [:standard, :spec] | ||
|
|
||
| RSpec::Core::RakeTask.new(:spec) | ||
|
|
||
| namespace :spec do | ||
| RSpec::Core::RakeTask.new(:shellout_types) do |t| | ||
| t.rspec_opts = "--tag shellout_types" | ||
| end | ||
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,22 +1,28 @@ | ||
| # coding: utf-8 | ||
| require File.expand_path('../lib/bosh/stemcell/version', __FILE__) | ||
| require File.expand_path("../lib/bosh/stemcell/version", __FILE__) | ||
|
|
||
| version = Bosh::Stemcell::VERSION | ||
|
|
||
| Gem::Specification.new do |spec| | ||
| spec.name = 'bosh-stemcell' | ||
| spec.version = version | ||
| spec.authors = 'Pivotal' | ||
| spec.email = 'support@cloudfoundry.com' | ||
| spec.description = 'Bosh::Stemcell provides tools to manage stemcells' | ||
| spec.summary = 'Bosh::Stemcell provides tools to manage stemcells' | ||
| spec.homepage = 'https://github.com/cloudfoundry/bosh' | ||
| spec.license = 'Apache 2.0' | ||
| spec.name = "bosh-stemcell" | ||
| spec.version = version | ||
| spec.authors = "Pivotal" | ||
| spec.email = "support@cloudfoundry.com" | ||
| spec.description = "Bosh::Stemcell provides tools to manage stemcells" | ||
| spec.summary = "Bosh::Stemcell provides tools to manage stemcells" | ||
| spec.homepage = "https://github.com/cloudfoundry/bosh" | ||
| spec.license = "Apache 2.0" | ||
|
|
||
| spec.required_ruby_version = Gem::Requirement.new('>= 1.9.3') | ||
| spec.required_ruby_version = Gem::Requirement.new(">= 1.9.3") | ||
|
|
||
| spec.files = Dir['README.md', 'lib/**/*'].select{ |f| File.file? f } | ||
| spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } | ||
| spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) | ||
| spec.files = Dir["README.md", "lib/**/*"].select { |f| File.file? f } | ||
| spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } | ||
| spec.require_paths = %w[lib] | ||
|
|
||
| spec.add_development_dependency "fakefs" | ||
| spec.add_development_dependency "rake" | ||
| spec.add_development_dependency "rspec" | ||
| spec.add_development_dependency "rspec-instafail" | ||
| spec.add_development_dependency "rspec-its" | ||
| spec.add_development_dependency "standard" | ||
| spec.add_development_dependency "timecop" | ||
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,11 @@ | ||
| module Bosh::Stemcell | ||
| class Arch | ||
| def self.arch | ||
| RbConfig::CONFIG['host_cpu'] | ||
| RbConfig::CONFIG["host_cpu"] | ||
| end | ||
|
|
||
| def self.x86_64? | ||
| arch == 'x86_64' | ||
| arch == "x86_64" | ||
| end | ||
| end | ||
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.