-
Notifications
You must be signed in to change notification settings - Fork 55
/
justfile
146 lines (118 loc) · 4 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
set ignore-comments
set dotenv-load
VERSION := `./ci/build_scripts/version.sh 2>/dev/null || exit 0`
# Detect the default target based on the user's CPU arch.
# For MacOS m1 users, it will return a linux host but
# match the appropriate CPU architecture,
# e.g. MacOS m1 => "aarch64-unknown-linux-musl"
DEFAULT_TARGET := `./ci/build_scripts/detect_target.sh`
CARGO := `command -V cargo-zigbuild >/dev/null 2>&1 && printf "cargo-zigbuild" || printf "cargo"`
# Print project and host machine info
info:
@echo "OS: {{os()}}"
@echo "OS_FAMILY: {{os_family()}}"
@echo "HOST_ARCH: {{arch()}}"
@echo "VERSION: {{VERSION}}"
@echo "DEFAULT_TARGET: {{DEFAULT_TARGET}}"
# Print the current git generated version
version TYPE="all":
@./ci/build_scripts/version.sh {{TYPE}} 2>/dev/null || exit 0
# Default recipe
[private]
default:
@just --list
# Install necessary tools
install-tools:
rustup component add rustfmt --toolchain nightly
cargo install taplo-cli cargo-nextest
# Check if necessary tools are installed
[private]
check-tools:
#!/usr/bin/env bash
if ! cargo +nightly fmt --help &> /dev/null; then
echo "cargo +nightly fmt is not installed, use just install-tools or install it manually"
exit 1
fi
if ! taplo fmt --help &> /dev/null; then
echo "taplo is not installed, use just install-tools or install it manually"
exit 1
fi
# Format code and tests
format: check-tools
#!/usr/bin/env bash
set -e
cargo +nightly fmt
taplo fmt
if [ ! -d tests/RobotFramework/.venv ]; then
just -f {{justfile()}} setup-integration-test
fi
cd tests/RobotFramework
source .venv/bin/activate
invoke format-tests
# Check code formatting
format-check: check-tools
#!/usr/bin/env bash
set -e
cargo +nightly fmt -- --check
taplo fmt --check
if [ ! -d tests/RobotFramework/.venv ]; then
just -f {{justfile()}} setup-integration-test
fi
cd tests/RobotFramework
source .venv/bin/activate
invoke check-format-tests
# Check code
check TARGET=DEFAULT_TARGET:
#!/usr/bin/env bash
set -e
{{CARGO}} check --target {{TARGET}}
{{CARGO}} clippy --all-targets --all-features --target {{TARGET}}
if [ ! -d tests/RobotFramework/.venv ]; then
just -f {{justfile()}} setup-integration-test
fi
cd tests/RobotFramework
source .venv/bin/activate
echo Checking tests...
invoke lint-tests
# Release, building all binaries and debian packages
release *ARGS:
ci/build_scripts/build.sh {{ARGS}}
# Run unit and doc tests
test *ARGS:
just -f {{justfile()}} test-unit {{ARGS}}
just -f {{justfile()}} test-docs
# Run unit tests
test-unit *ARGS:
cargo nextest run --no-fail-fast --all-features --all-targets {{ARGS}}
# Run doc tests
test-docs *ARGS:
cargo test --doc --no-fail-fast --all-features {{ARGS}}
# Install integration test dependencies
setup-integration-test *ARGS:
tests/RobotFramework/bin/setup.sh {{ARGS}}
# Run integration tests (using local build)
integration-test *ARGS: release
#!/usr/bin/env bash
set -e
if [ ! -d tests/RobotFramework/.venv ]; then
just -f {{justfile()}} setup-integration-test
fi
cd tests/RobotFramework
source .venv/bin/activate
invoke build --local
invoke tests {{ARGS}}
# Generate linux package scripts from templates
generate-linux-package-scripts:
./configuration/package_scripts/generate.py
# Build linux virtual packages
release-linux-virtual:
./ci/build_scripts/package.sh build_virtual "all" --output target/virtual-packages
# Publish linux virtual packages
publish-linux-virtual *ARGS='':
./ci/build_scripts/publish_packages.sh --path target/virtual-packages {{ARGS}}
# Publish linux packages for a specific target
publish-linux-target TARGET=DEFAULT_TARGET *ARGS='':
./ci/build_scripts/publish_packages.sh --path "target/{{TARGET}}/packages" {{ARGS}}
# Generate changelog for a release
generate-changelog *ARGS:
./ci/changelog/changelog.sh {{ARGS}}