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

[Monorepo] Put all crates in a separate folder #2574

Draft
wants to merge 10 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
cargo build --locked --release --workspace

- name: Build sequencer-sqlite
run: cargo build --locked --release --manifest-path ./sequencer-sqlite/Cargo.toml --target-dir ./target
run: cargo build --locked --release --manifest-path ./crates/sequencer-sqlite/Cargo.toml --target-dir ./target

- name: Build Espresso Dev Node
# Espresso Dev Node currently requires testing feature, so it is built separately.
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
cargo build --locked --release --workspace

- name: Build sequencer-sqlite
run: cargo build --locked --release --manifest-path ./sequencer-sqlite/Cargo.toml --target-dir ./target
run: cargo build --locked --release --manifest-path ./crates/sequencer-sqlite/Cargo.toml --target-dir ./target

- name: Build Espresso Dev Node
# Espresso Dev Node currently requires testing feature, so it is built separately.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
# timeout-minutes: 120
run: |
nix develop $DEVSHELL --accept-flake-config --option sandbox relaxed -c cargo build --locked --release
-c cargo build --locked --release --manifest-path ./sequencer-sqlite/Cargo.toml --target-dir 'echo $CARGO_TARGET_DIR'
-c cargo build --locked --release --manifest-path ./crates/sequencer-sqlite/Cargo.toml --target-dir 'echo $CARGO_TARGET_DIR'

- name: Upload artifacts
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
- name: Build Bins
run: |
cargo build --locked --profile test --bins
cargo build --manifest-path ./sequencer-sqlite/Cargo.toml --target-dir ./target
cargo build --manifest-path ./crates/sequencer-sqlite/Cargo.toml --target-dir ./target
timeout-minutes: 60

- name: Upload archive to workflow
Expand Down
8 changes: 4 additions & 4 deletions .typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ extend-exclude = [
"doc/*.puml",
"**/*.drawio",
"contracts/lib",
"contract-bindings-alloy",
"contract-bindings-ethers",
"node-metrics/src/api/node_validator/v0/example_prometheus_metrics_output.txt",
"hotshot-orchestrator/run-config.toml"
"crates/contract-bindings-alloy",
"crates/contract-bindings-ethers",
"crates/node-metrics/src/api/node_validator/v0/example_prometheus_metrics_output.txt",
"crates/hotshot-orchestrator/run-config.toml"
]
Loading
Loading