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

consolidate omicron-dev, omdb, and xtask into "dev-tools" directory #4129

Merged
merged 3 commits into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ members = [
"common",
"ddm-admin-client",
"deploy",
"dev-tools",
"dev-tools/omdb",
"dev-tools/omicron-dev",
"dev-tools/xtask",
"dns-server",
"dns-service-client",
"dpd-client",
Expand Down Expand Up @@ -37,7 +39,6 @@ members = [
"nexus/test-utils-macros",
"nexus/test-utils",
"nexus/types",
"omdb",
"oxide-client",
"oximeter-client",
"oximeter/collector",
Expand All @@ -62,7 +63,6 @@ members = [
"wicket",
"wicketd-client",
"wicketd",
"xtask",
]

default-members = [
Expand All @@ -74,7 +74,9 @@ default-members = [
"ddm-admin-client",
"dpd-client",
"deploy",
"dev-tools",
"dev-tools/omdb",
"dev-tools/omicron-dev",
"dev-tools/xtask",
"dns-server",
"dns-service-client",
"gateway",
Expand All @@ -98,7 +100,6 @@ default-members = [
"nexus/db-queries",
"nexus/defaults",
"nexus/types",
"omdb",
"oxide-client",
"oximeter-client",
"oximeter/collector",
Expand All @@ -123,7 +124,6 @@ default-members = [
"wicket-dbg",
"wicketd",
"wicketd-client",
"xtask",
]
resolver = "2"

Expand Down Expand Up @@ -234,7 +234,7 @@ nexus-types = { path = "nexus/types" }
num-integer = "0.1.45"
num = { version = "0.4.1", default-features = false, features = [ "libm" ] }
omicron-common = { path = "common" }
omicron-dev-tools = { path = "dev-tools" }
omicron-dev = { path = "dev-tools/omicron-dev" }
omicron-gateway = { path = "gateway" }
omicron-nexus = { path = "nexus" }
omicron-omdb = { path = "omdb" }
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion dev-tools/Cargo.toml → dev-tools/omicron-dev/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "omicron-dev-tools"
name = "omicron-dev"
version = "0.1.0"
edition = "2021"
license = "MPL-2.0"
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ async fn cmd_run_all(args: &RunAllArgs) -> Result<(), anyhow::Error> {
let mut signal_stream = signals.fuse();

// Read configuration.
let config_str = include_str!("../../../nexus/examples/config.toml");
let config_str = include_str!("../../../../nexus/examples/config.toml");
let mut config: omicron_common::nexus_config::Config =
toml::from_str(config_str).context("parsing example config")?;
config.pkg.log = dropshot::ConfigLogging::File {
Expand Down
File renamed without changes.
File renamed without changes.