File tree 1 file changed +2
-43
lines changed
1 file changed +2
-43
lines changed Original file line number Diff line number Diff line change 1
- build_docs :
2
- cargo doc --no-deps
3
- build_examples :
4
- cargo build --examples
5
- build :
6
- cargo build
7
- build_release :
8
- cargo build --release
9
- build_release_% :
10
- cargo build --release --package $*
11
- build_% :
12
- cargo build --package $*
13
-
14
- fmt :
15
- cargo fmt --all
16
-
17
1
check :
18
2
cargo hack check --each-feature
19
3
20
- check_no_std :
21
- cargo --version
22
- cargo check --target thumbv7em-none-eabihf -p ockam --no-default-features --features ' no_std alloc software_vault'
23
- # no_std example project
24
- cd examples/rust/example_projects/no_std
25
- cargo check --example hello
26
-
27
- check_cargo_update :
28
- cargo --version
29
- # TODO: uncomment when tauri version is updated
30
- # rm -rf Cargo.lock
31
- # cargo update
32
- # cargo check
33
-
34
4
# no uncommitted changes on sdk (generated code)
35
5
check_no_uncommitted_changes_on_sdk :
36
6
git diff --exit-code cdevents-sdk
37
7
38
- lint : lint_cargo_fmt_check lint_cargo_deny lint_cargo_clippy
39
-
40
8
lint_cargo_fmt_check :
41
9
cargo fmt --all -- --check
42
10
@@ -56,15 +24,6 @@ lint_cargo_toml_fmt_files:
56
24
lint_cargo_toml_check_files :
57
25
dprint check --config=tools/dprint/dprint.json
58
26
59
- test_cargo_nextest :
60
- cargo nextest run --all-features
61
-
62
- test_cargo_check :
63
- cargo hack check --each-feature --no-dev-deps
64
-
65
- test_cargo_machete :
66
- cargo machete --with-metadata
67
-
68
27
clean :
69
28
cargo clean
70
29
79
38
generate \
80
39
check check_no_uncommitted_changes_on_sdk \
81
40
test \
82
- lint lint_cargo_fmt_check lint_cargo_deny lint_cargo_clippy lint_cargo_toml_files lint_cargo_readme lint_cargo_readme_% lint_cargo_toml_files \
83
- clean clean_% very_clean format
41
+ lint_cargo_fmt_check lint_cargo_deny lint_cargo_clippy lint_cargo_toml_files \
42
+ clean
You can’t perform that action at this time.
0 commit comments