forked from moonrepo/moon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
justfile
77 lines (50 loc) · 1.52 KB
/
justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
set windows-shell := ["pwsh.exe", "-NoLogo", "-Command"]
init:
cargo install cargo-binstall
cargo binstall cargo-insta cargo-nextest cargo-llvm-cov
# BUILDING
build:
cargo build --workspace
build-wasm:
cd wasm/test-plugin && cargo wasi build
# CHECKING
check:
cargo check --workspace
format:
cargo fmt --all -- --emit=files
format-check:
cargo fmt --all --check
lint:
cargo clippy --workspace --all-targets
lint-fix:
cargo clippy --workspace --all-targets --fix --allow-dirty --allow-staged
# TESTING
test $MOON_TEST="true" name="":
cargo nextest run --workspace --config-file ./.cargo/nextest.toml {{name}}
test-ci $MOON_TEST="true":
cargo nextest run --workspace --config-file ./.cargo/nextest.toml --profile ci
# CODE COVERAGE
cov:
cargo llvm-cov nextest --workspace --config-file ./.cargo/nextest.toml --profile ci
gen-report:
cargo llvm-cov report --lcov --ignore-filename-regex error --output-path ./report.txt
gen-html:
cargo llvm-cov report --html --ignore-filename-regex error --open
# RELEASING
bump type="patch":
bash ./scripts/version/bumpBinaryVersions.sh {{type}}
bump-all:
bash ./scripts/version/forceBumpAllVersions.sh
bump-interactive:
yarn version check --interactive
release:
node ./scripts/version/applyAndTagVersions.mjs
# OTHER
docs:
cargo run -- run website:start
moon-check:
cargo run -- check --all --log trace
schemas:
cargo run -p moon_config
gql:
graphql-client introspect-schema http://localhost:8080/graphql --output nextgen/api/schema.json --header "X-Moonbase-TestingId: 1"