Skip to content
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.

🗑️ cleanup #1256

Merged
merged 2 commits into from
Nov 8, 2023
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
2 changes: 1 addition & 1 deletion .github/workflows/starknet-js-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fail-on-cache-miss: true
- name: Setup dev chain
run: |
./target/release/madara setup --chain=dev --from-remote
./target/release/madara setup --chain=dev --from-local=configs
- name: Run starknet-js test
run: |-
./target/release/madara --dev --execution native &
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/starknet-rpc-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
sudo apt-get install -y clang llvm libudev-dev protobuf-compiler
- name: Setup dev chain
run: |
./target/release/madara setup --chain=dev --from-remote
./target/release/madara setup --chain=dev --from-local=configs
- name: Run rpc native test
run: |-
./target/release/madara --dev --sealing=manual --execution=Native &
Expand Down
6 changes: 0 additions & 6 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
[submodule "madara-infra"]
path = madara-infra
url = https://github.com/keep-starknet-strange/madara-infra
[submodule "madara-app"]
path = madara-app
url = https://github.com/keep-starknet-strange/madara-app
[submodule "madara-docs"]
path = madara-docs
url = https://github.com/keep-starknet-strange/madara-docs
[submodule "madara-dev-explorer"]
path = madara-dev-explorer
url = https://github.com/keep-starknet-strange/madara-dev-explorer
[submodule "madara-tsukuyomi"]
path = madara-tsukuyomi
url = https://github.com/keep-starknet-strange/madara-tsukuyomi
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
- dev(compilation): add incremental compilation
- feat(rpc): add support for bulk estimate fee
- feat: add argent multicall contract to genesis
- fix(ci): setup should fetch files from local config
- chore: deprecate `madara-app` and `madara-dev-explorer` modules

## v0.5.0

Expand Down
1 change: 1 addition & 0 deletions crates/node/src/commands/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ fn copy_file(src_path: &Path, dest_dir_path: &PathBuf) -> Result<()> {

std::fs::create_dir_all(dest_dir_path)?;
let dest_file_path = dest_dir_path.join(src_path.file_name().ok_or("File name not found")?);
println!("Copying '{}' to '{}'", src_path.display(), dest_file_path.display());
std::fs::copy(src_path, dest_file_path)?;

Ok(())
Expand Down
1 change: 0 additions & 1 deletion madara-app
Submodule madara-app deleted from 8c7376
1 change: 0 additions & 1 deletion madara-dev-explorer
Submodule madara-dev-explorer deleted from 76da90
Loading