Skip to content
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

Inline the bosh-director-core gem into bosh-director #2575

Merged
merged 1 commit into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ jobs:
- common:parallel
- core:parallel
- dev:parallel
- director-core:parallel
- monitor:parallel
- nats-sync:parallel
- template:parallel
Expand Down
20 changes: 0 additions & 20 deletions ci/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ groups:
- unit-common
- unit-core
- unit-dev
- unit-director-core
- unit-monitor
- unit-nats-sync
- unit-template
Expand Down Expand Up @@ -61,7 +60,6 @@ jobs:
- unit-common
- unit-core
- unit-dev
- unit-director-core
- unit-monitor
- unit-nats-sync
- unit-template
Expand Down Expand Up @@ -127,23 +125,6 @@ jobs:
params:
RAKE_TASK: spec:unit:dev

- name: unit-director-core
public: true
serial: true
serial_groups: [unit-director-core]
build_logs_to_retain: 250
plan:
- get: bosh-src
trigger: true
passed: [gate]
- get: integration-image
- task: test-rake-task
timeout: 2h
file: bosh-src/ci/tasks/test-rake-task.yml
image: integration-image
params:
RAKE_TASK: spec:unit:director-core

- name: unit-monitor
public: true
serial: true
Expand Down Expand Up @@ -423,7 +404,6 @@ jobs:
- unit-common
- unit-core
- unit-dev
- unit-director-core
- unit-monitor
- unit-nats-sync
- unit-template
Expand Down
1 change: 0 additions & 1 deletion packages/director/spec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ files:
- bosh-director/**/*
- bosh_common/**/*
- bosh-core/**/*
- bosh-director-core/**/*
- bosh-template/**/*
- vendor/cache/*.gem
- vendor/cache/extensions/**
1 change: 0 additions & 1 deletion scripts/rsync-bbl
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ main() {
do-rsync bosh-director db
do-rsync bosh-director lib
do-rsync bosh-core lib
do-rsync bosh-director-core lib
do-rsync bosh-template bin
do-rsync bosh-template lib

Expand Down
1 change: 0 additions & 1 deletion scripts/rsync-vbox
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ main() {
do-rsync bosh-director db director
do-rsync bosh-director lib director
do-rsync bosh-core lib director
do-rsync bosh-director-core lib director
do-rsync bosh-template bin director
do-rsync bosh-template lib director
do-rsync bosh-monitor lib health_monitor
Expand Down
1 change: 0 additions & 1 deletion src/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ source 'https://rubygems.org'

gem 'bosh-core', path: 'bosh-core'
gem 'bosh-director', path: 'bosh-director'
gem 'bosh-director-core', path: 'bosh-director-core'
gem 'bosh-monitor', path: 'bosh-monitor'
gem 'bosh-nats-sync', path: 'bosh-nats-sync'
gem 'bosh-template', path: 'bosh-template'
Expand Down
11 changes: 0 additions & 11 deletions src/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,12 @@ PATH
logging
openssl

PATH
remote: bosh-director-core
specs:
bosh-director-core (0.0.0)
bosh-template (~> 0.0.0)
bosh_common (~> 0.0.0)
openssl
securerandom

PATH
remote: bosh-director
specs:
bosh-director (0.0.0)
bcrypt
bosh-core (~> 0.0.0)
bosh-director-core (~> 0.0.0)
bosh-template (~> 0.0.0)
bosh_common (~> 0.0.0)
bosh_cpi
Expand Down Expand Up @@ -368,7 +358,6 @@ DEPENDENCIES
bosh-core!
bosh-dev!
bosh-director!
bosh-director-core!
bosh-monitor!
bosh-nats-sync!
bosh-template!
Expand Down
1 change: 0 additions & 1 deletion src/bosh-director-core/.gitignore

This file was deleted.

31 changes: 0 additions & 31 deletions src/bosh-director-core/bosh-director-core.gemspec

This file was deleted.

15 changes: 0 additions & 15 deletions src/bosh-director-core/spec/gemspec_spec.rb

This file was deleted.

1 change: 0 additions & 1 deletion src/bosh-director-core/spec/spec_helper.rb

This file was deleted.

7 changes: 3 additions & 4 deletions src/bosh-director/bosh-director.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,9 @@ Gem::Specification.new do |spec|
# external CPIs, in order to ensure appropriate versions are installed.
# Also do the same in bosh_cli_plugin_micro.gemspec
# Review this once CPIs are completely externalized and "micro" goes away.
spec.add_dependency 'bosh_common', "~>#{Bosh::Director::VERSION}"
spec.add_dependency 'bosh-core', "~>#{Bosh::Director::VERSION}"
spec.add_dependency 'bosh-director-core', "~>#{Bosh::Director::VERSION}"
spec.add_dependency 'bosh-template', "~>#{Bosh::Director::VERSION}"
spec.add_dependency 'bosh_common', "~>#{Bosh::Director::VERSION}"
spec.add_dependency 'bosh-core', "~>#{Bosh::Director::VERSION}"
spec.add_dependency 'bosh-template', "~>#{Bosh::Director::VERSION}"

spec.add_dependency 'bcrypt'
spec.add_dependency 'bosh_cpi'
Expand Down
Loading