forked from spacedriveapp/spacebot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
40 lines (28 loc) · 791 Bytes
/
Copy pathjustfile
File metadata and controls
40 lines (28 loc) · 791 Bytes
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
set shell := ["bash", "-euo", "pipefail", "-c"]
default:
@just --list
preflight:
./scripts/preflight.sh
preflight-ci:
./scripts/preflight.sh --ci
fmt-check:
cargo fmt --all -- --check
check-all:
cargo check --all-targets
clippy-all:
cargo clippy --all-targets
test-lib:
cargo test --lib
test-integration-compile:
cargo test --tests --no-run
gate-pr: preflight
./scripts/gate-pr.sh
gate-pr-ci: preflight-ci
./scripts/gate-pr.sh --ci
gate-pr-ci-fast: preflight-ci
./scripts/gate-pr.sh --ci --fast
# Build the OpenCode embed bundle from a pinned upstream commit.
# Clones opencode, copies embed entry points, builds with Vite,
# and outputs to interface/public/opencode-embed/.
build-opencode-embed:
./scripts/build-opencode-embed.sh