-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TML-12 workflow: update moon dart task
- Loading branch information
1 parent
82386de
commit f77582b
Showing
3 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#!/bin/bash | ||
|
||
echo "\nStart run units test\n" | ||
make test.unit.run |
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,26 @@ | ||
# You can see detail the tool here | ||
# https://github.com/sagiegurari/cargo-make | ||
|
||
extend = [ | ||
{ path = "scripts/api.toml" }, | ||
{ path = "scripts/generate.toml" }, | ||
{ path = "scripts/git.toml" }, | ||
{ path = "scripts/migration.toml" }, | ||
{ path = "scripts/mobile.toml" }, | ||
# { path = "scripts/protobuf.toml" }, | ||
# { path = "scripts/docker.toml" }, | ||
# { path = "scripts/env.toml" }, | ||
{ path = "scripts/tests.toml" }, | ||
{ path = "scripts/tool.toml" }, | ||
{ path = "scripts/web.toml" }, | ||
] | ||
|
||
[config] | ||
on_error_task = "catch" | ||
|
||
[env] | ||
RUST_LOG = "info" | ||
CARGO_PROFILE = "dev" | ||
CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true | ||
# CARGO_MAKE_CRATE_FS_NAME = "dart_ffi" | ||
# CARGO_MAKE_CRATE_NAME = "dart-ffi" |