Skip to content

Commit

Permalink
Merge pull request #10 from pendulum-labs/dev
Browse files Browse the repository at this point in the history
updates from super_orchestrator 0.9
  • Loading branch information
AaronKutch authored Nov 11, 2023
2 parents b7658f9 + b4a987c commit 98d7da9
Show file tree
Hide file tree
Showing 29 changed files with 2,914 additions and 916 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/target
/Cargo.lock
.cargo/config.toml
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Onomy Tests

`onomy_test_lib` is the main crate for common test functionality. `tests` is mainly for local manual tests.
`onomy_test_lib` is the main crate for common test functionality. `tests` is mainly for local semimanual tests.

update onomyd and onexd versions through the constants in `common.rs`.

for faster compilation, add this to `./cargo/config.toml`:
```
[target.x86_64-unknown-linux-gnu]
# follow the instructions on https://github.com/rui314/mold
linker = "clang"
rustflags = ["-C", "link-arg=-fuse-ld=/usr/local/bin/mold"]
```
4 changes: 2 additions & 2 deletions onomy_test_lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ serde-transcode = "1.1"
serde_derive = "1.0"
serde_json = "1.0"
serde_yaml = "0.9"
super_orchestrator = { version = "0.7", default-features = false, features = ["env_logger_support", "ctrlc_support", "nix_support"] }
#super_orchestrator = { git = "https://github.com/AaronKutch/super_orchestrator", rev = "2661d4b0f1031b626b84eebbee5859b2e62aed07", default-features = false, features = ["env_logger_support", "ctrlc_support", "nix_support"] }
super_orchestrator = { version = "0.9", default-features = false, features = ["env_logger_support", "ctrlc_support", "nix_support"] }
#super_orchestrator = { git = "https://github.com/AaronKutch/super_orchestrator", rev = "c1b1fc4837d9d54b7f0ca2edcc3daa76ac63481f", default-features = false, features = ["env_logger_support", "ctrlc_support", "nix_support"] }
#super_orchestrator = { path = "../../super_orchestrator", default-features = false, features = [ "env_logger_support", "ctrlc_support", "nix_support"] }
tokio = { version = "1", features = ["full"] }
toml = "0.7"
Expand Down
Loading

0 comments on commit 98d7da9

Please sign in to comment.