Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
haixuanTao committed Dec 21, 2023
1 parent c2a887e commit d97a2e1
Show file tree
Hide file tree
Showing 8 changed files with 63 additions and 63 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
cargo publish -p dora-node-api-c --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
# Publish binaries crates
cargo publish -p dora-cli--token ${{ secrets.CARGO_REGISTRY_TOKEN }}
cargo publish -p dora-cli --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
cargo publish -p dora-coordinator --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
cargo publish -p dora-runtime --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
cargo publish -p dora-daemon --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
Expand All @@ -83,7 +83,7 @@ jobs:

- name: "Build binaries"
timeout-minutes: 60
run: "cargo build --release -p dora-coordinator -p dora-cli-p dora-daemon"
run: "cargo build --release -p dora-coordinator -p dora-cli -p dora-daemon"

- name: Create Archive (Windows)
if: runner.os == 'Windows'
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:

- name: "Build binaries"
timeout-minutes: 60
run: "cargo build --release -p dora-coordinator -p dora-cli-p dora-daemon"
run: "cargo build --release -p dora-coordinator -p dora-cli -p dora-daemon"

- name: "Create Archive (Unix)"
if: runner.os == 'Linux' || runner.os == 'macOS'
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
with:
use-cross: true
command: build
args: --release --target aarch64-unknown-linux-gnu -p dora-coordinator -p dora-cli-p dora-daemon
args: --release --target aarch64-unknown-linux-gnu -p dora-coordinator -p dora-cli -p dora-daemon

- name: "Archive Linux ARM64"
if: runner.os == 'Linux'
Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: build
args: --release --target aarch64-apple-darwin -p dora-coordinator -p dora-cli-p dora-daemon
args: --release --target aarch64-apple-darwin -p dora-coordinator -p dora-cli -p dora-daemon

- name: "Archive macOS ARM64"
if: runner.os == 'macOS'
Expand Down
66 changes: 33 additions & 33 deletions Cargo.lock

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

40 changes: 20 additions & 20 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,31 +33,31 @@ members = [

[workspace.package]
# Make sure to also bump `apis/node/python/__init__.py` version.
version = "0.3.0-rc4"
version = "0.3.1-rc4"
description = "`dora` goal is to be a low latency, composable, and distributed data flow."
documentation = "https://dora.carsmos.ai"
license = "Apache-2.0"

[workspace.dependencies]
dora-node-api = { version = "0.3.0-rc4", path = "apis/rust/node", default-features = false }
dora-node-api-python = { version = "0.3.0-rc4", path = "apis/python/node", default-features = false }
dora-operator-api = { version = "0.3.0-rc4", path = "apis/rust/operator", default-features = false }
dora-operator-api-macros = { version = "0.3.0-rc4", path = "apis/rust/operator/macros" }
dora-operator-api-types = { version = "0.3.0-rc4", path = "apis/rust/operator/types" }
dora-operator-api-python = { version = "0.3.0-rc4", path = "apis/python/operator" }
dora-operator-api-c = { version = "0.3.0-rc4", path = "apis/c/operator" }
dora-node-api-c = { version = "0.3.0-rc4", path = "apis/c/node" }
dora-core = { version = "0.3.0-rc4", path = "libraries/core" }
dora-arrow-convert = { version = "0.3.0-rc4", path = "libraries/arrow-convert" }
dora-tracing = { version = "0.3.0-rc4", path = "libraries/extensions/telemetry/tracing" }
dora-metrics = { version = "0.3.0-rc4", path = "libraries/extensions/telemetry/metrics" }
dora-download = { version = "0.3.0-rc4", path = "libraries/extensions/download" }
shared-memory-server = { version = "0.3.0-rc4", path = "libraries/shared-memory-server" }
communication-layer-request-reply = { version = "0.3.0-rc4", path = "libraries/communication-layer/request-reply" }
dora-message = { version = "0.3.0-rc4", path = "libraries/message" }
dora-runtime = { version = "0.3.0-rc4", path = "binaries/runtime" }
dora-daemon = { version = "0.3.0-rc4", path = "binaries/daemon" }
dora-coordinator = { version = "0.3.0-rc4", path = "binaries/coordinator" }
dora-node-api = { version = "0.3.1-rc4", path = "apis/rust/node", default-features = false }
dora-node-api-python = { version = "0.3.1-rc4", path = "apis/python/node", default-features = false }
dora-operator-api = { version = "0.3.1-rc4", path = "apis/rust/operator", default-features = false }
dora-operator-api-macros = { version = "0.3.1-rc4", path = "apis/rust/operator/macros" }
dora-operator-api-types = { version = "0.3.1-rc4", path = "apis/rust/operator/types" }
dora-operator-api-python = { version = "0.3.1-rc4", path = "apis/python/operator" }
dora-operator-api-c = { version = "0.3.1-rc4", path = "apis/c/operator" }
dora-node-api-c = { version = "0.3.1-rc4", path = "apis/c/node" }
dora-core = { version = "0.3.1-rc4", path = "libraries/core" }
dora-arrow-convert = { version = "0.3.1-rc4", path = "libraries/arrow-convert" }
dora-tracing = { version = "0.3.1-rc4", path = "libraries/extensions/telemetry/tracing" }
dora-metrics = { version = "0.3.1-rc4", path = "libraries/extensions/telemetry/metrics" }
dora-download = { version = "0.3.1-rc4", path = "libraries/extensions/download" }
shared-memory-server = { version = "0.3.1-rc4", path = "libraries/shared-memory-server" }
communication-layer-request-reply = { version = "0.3.1-rc4", path = "libraries/communication-layer/request-reply" }
dora-message = { version = "0.3.1-rc4", path = "libraries/message" }
dora-runtime = { version = "0.3.1-rc4", path = "binaries/runtime" }
dora-daemon = { version = "0.3.1-rc4", path = "binaries/daemon" }
dora-coordinator = { version = "0.3.1-rc4", path = "binaries/coordinator" }
dora-ros2-bridge = { path = "libraries/extensions/ros2-bridge" }
dora-ros2-bridge-python = { path = "libraries/extensions/ros2-bridge/python" }
arrow = "48.0.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/benchmark/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ async fn build_dataflow(dataflow: &Path) -> eyre::Result<()> {
let cargo = std::env::var("CARGO").unwrap();
let mut cmd = tokio::process::Command::new(&cargo);
cmd.arg("run");
cmd.arg("--package").arg("dora");
cmd.arg("--package").arg("dora-cli");
cmd.arg("--").arg("build").arg(dataflow);
if !cmd.status().await?.success() {
bail!("failed to build dataflow");
Expand Down
Loading

0 comments on commit d97a2e1

Please sign in to comment.