-
-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
internal: Refactor action runner and move to separate crates. (#179)
* Start on new dep graph. * Fix tests. * Copy some actions. * Copy run target action. * Copy action runner. * Add context. * Remove old code. * Update cli. * Fix issues. * Update changelog.
- Loading branch information
Showing
50 changed files
with
1,452 additions
and
1,285 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
[package] | ||
name = "moon_action_runner" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
moon_action = { path = "../action" } | ||
moon_cache = { path = "../cache" } | ||
moon_config = { path = "../config" } | ||
moon_error = { path = "../error" } | ||
moon_hasher = { path = "../hasher" } | ||
moon_lang = { path = "../lang" } | ||
moon_lang_node = { path = "../lang-node" } | ||
moon_logger = { path = "../logger" } | ||
moon_project = { path = "../project" } | ||
moon_terminal = { path = "../terminal" } | ||
moon_toolchain = { path = "../toolchain" } | ||
moon_utils = { path = "../utils" } | ||
moon_vcs = { path = "../vcs" } | ||
moon_workspace = { path = "../workspace" } | ||
petgraph = "0.6.0" | ||
thiserror = "1.0.31" | ||
tokio = { version = "1.18.2", features = ["full"] } | ||
|
||
[dev-dependencies] | ||
insta = "1.14.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
mod install_node_deps; | ||
mod run_target; | ||
mod setup_toolchain; | ||
mod sync_node_project; | ||
mod target; | ||
|
||
pub use install_node_deps::*; | ||
pub use run_target::*; | ||
pub use setup_toolchain::*; | ||
pub use sync_node_project::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.