Skip to content

Commit cf6f0b9

Browse files
committed
fix: removed unused script in Makefile
Signed-off-by: Hergy Fongue <[email protected]>
1 parent b778dd5 commit cf6f0b9

File tree

1 file changed

+2
-43
lines changed

1 file changed

+2
-43
lines changed

Makefile

+2-43
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,10 @@
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-
171
check:
182
cargo hack check --each-feature
193

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-
344
# no uncommitted changes on sdk (generated code)
355
check_no_uncommitted_changes_on_sdk:
366
git diff --exit-code cdevents-sdk
377

38-
lint: lint_cargo_fmt_check lint_cargo_deny lint_cargo_clippy
39-
408
lint_cargo_fmt_check:
419
cargo fmt --all -- --check
4210

@@ -56,15 +24,6 @@ lint_cargo_toml_fmt_files:
5624
lint_cargo_toml_check_files:
5725
dprint check --config=tools/dprint/dprint.json
5826

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-
6827
clean:
6928
cargo clean
7029

@@ -79,5 +38,5 @@ test:
7938
generate \
8039
check check_no_uncommitted_changes_on_sdk \
8140
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

0 commit comments

Comments
 (0)