|
|
@@ -6,6 +6,7 @@ _default:
|
|
|
all: build test
|
|
|
all-release: build-release test-release
|
|
|
|
|
|
+[group('house-keeping')]
|
|
|
genDemo:
|
|
|
fish_prompt="> " fish_history="eza_history" vhs < docs/tapes/demo.tape
|
|
|
nsxiv -a docs/images/demo.gif
|
|
|
@@ -15,19 +16,23 @@ genDemo:
|
|
|
#----------#
|
|
|
|
|
|
# compile the exa binary
|
|
|
+[group('building')]
|
|
|
@build:
|
|
|
cargo build
|
|
|
|
|
|
# compile the exa binary (in release mode)
|
|
|
+[group('building')]
|
|
|
@build-release:
|
|
|
cargo build --release --verbose
|
|
|
|
|
|
# produce an HTML chart of compilation timings
|
|
|
+[group('building')]
|
|
|
@build-time:
|
|
|
cargo +nightly clean
|
|
|
cargo +nightly build -Z timings
|
|
|
|
|
|
# check that the exa binary can compile
|
|
|
+[group('building')]
|
|
|
@check:
|
|
|
cargo check
|
|
|
|
|
|
@@ -37,10 +42,12 @@ genDemo:
|
|
|
#---------------#
|
|
|
|
|
|
# run unit tests
|
|
|
+[group('testing')]
|
|
|
@test:
|
|
|
cargo test --workspace -- --quiet
|
|
|
|
|
|
# run unit tests (in release mode)
|
|
|
+[group('testing')]
|
|
|
@test-release:
|
|
|
cargo test --workspace --release --verbose
|
|
|
|
|
|
@@ -49,27 +56,32 @@ genDemo:
|
|
|
#-----------------------#
|
|
|
|
|
|
# lint the code
|
|
|
+[group('house-keeping')]
|
|
|
@clippy:
|
|
|
touch src/main.rs
|
|
|
cargo clippy
|
|
|
|
|
|
# update dependency versions, and checks for outdated ones
|
|
|
+[group('house-keeping')]
|
|
|
@update-deps:
|
|
|
cargo update
|
|
|
command -v cargo-outdated >/dev/null || (echo "cargo-outdated not installed" && exit 1)
|
|
|
cargo outdated
|
|
|
|
|
|
# list unused dependencies
|
|
|
+[group('house-keeping')]
|
|
|
@unused-deps:
|
|
|
command -v cargo-udeps >/dev/null || (echo "cargo-udeps not installed" && exit 1)
|
|
|
cargo +nightly udeps
|
|
|
|
|
|
# check that every combination of feature flags is successful
|
|
|
+[group('house-keeping')]
|
|
|
@check-features:
|
|
|
command -v cargo-hack >/dev/null || (echo "cargo-hack not installed" && exit 1)
|
|
|
cargo hack check --feature-powerset
|
|
|
|
|
|
# print versions of the necessary build tools
|
|
|
+[group('house-keeping')]
|
|
|
@versions:
|
|
|
rustc --version
|
|
|
cargo --version
|
|
|
@@ -80,6 +92,7 @@ genDemo:
|
|
|
#---------------#
|
|
|
|
|
|
# build the man pages
|
|
|
+[group('documentation')]
|
|
|
@man:
|
|
|
mkdir -p "${CARGO_TARGET_DIR:-target}/man"
|
|
|
version=$(awk 'BEGIN { FS = "\"" } ; /^version/ { print $2 ; exit }' Cargo.toml); \
|
|
|
@@ -88,14 +101,17 @@ genDemo:
|
|
|
done;
|
|
|
|
|
|
# build and preview the main man page (eza.1)
|
|
|
+[group('documentation')]
|
|
|
@man-1-preview: man
|
|
|
man "${CARGO_TARGET_DIR:-target}/man/eza.1"
|
|
|
|
|
|
# build and preview the colour configuration man page (eza_colors.5)
|
|
|
+[group('documentation')]
|
|
|
@man-5-preview: man
|
|
|
man "${CARGO_TARGET_DIR:-target}/man/eza_colors.5"
|
|
|
|
|
|
# build and preview the colour configuration man page (eza_colors.5)
|
|
|
+[group('documentation')]
|
|
|
@man-5-explanations-preview: man
|
|
|
man "${CARGO_TARGET_DIR:-target}/man/eza_colors-explanation.5"
|
|
|
|
|
|
@@ -108,6 +124,7 @@ new_version := "$(convco version --bump)"
|
|
|
# If you're not cafkafk and she isn't dead, don't run this!
|
|
|
#
|
|
|
# usage: release major, release minor, release patch
|
|
|
+[group('release')]
|
|
|
release:
|
|
|
cargo bump "{{new_version}}"
|
|
|
git cliff -c .config/cliff.toml -t "{{new_version}}" > CHANGELOG.md
|
|
|
@@ -121,6 +138,7 @@ release:
|
|
|
gh pr create --draft --title "chore: release v{{new_version}}" --body "This PR was auto-generated by our lovely just file" --reviewer cafkafk
|
|
|
@echo "Now go review that and come back and run gh-release"
|
|
|
|
|
|
+[group('release')]
|
|
|
@gh-release:
|
|
|
git tag -d "v{{new_version}}" || echo "tag not found, creating";
|
|
|
git tag --sign -a "v{{new_version}}" -m "auto generated by the justfile for eza v$(convco version)"
|
|
|
@@ -138,42 +156,51 @@ release:
|
|
|
# binaries #
|
|
|
#----------------#
|
|
|
|
|
|
+[group('binaries')]
|
|
|
tar BINARY TARGET:
|
|
|
tar czvf ./target/"bin-$(convco version)"/{{BINARY}}_{{TARGET}}.tar.gz -C ./target/{{TARGET}}/release/ ./{{BINARY}}
|
|
|
|
|
|
+[group('binaries')]
|
|
|
zip BINARY TARGET:
|
|
|
zip -j ./target/"bin-$(convco version)"/{{BINARY}}_{{TARGET}}.zip ./target/{{TARGET}}/release/{{BINARY}}
|
|
|
|
|
|
+[group('binaries')]
|
|
|
tar_static BINARY TARGET:
|
|
|
tar czvf ./target/"bin-$(convco version)"/{{BINARY}}_{{TARGET}}_static.tar.gz -C ./target/{{TARGET}}/release/ ./{{BINARY}}
|
|
|
|
|
|
+[group('binaries')]
|
|
|
zip_static BINARY TARGET:
|
|
|
zip -j ./target/"bin-$(convco version)"/{{BINARY}}_{{TARGET}}_static.zip ./target/{{TARGET}}/release/{{BINARY}}
|
|
|
|
|
|
+[group('binaries')]
|
|
|
binary BINARY TARGET:
|
|
|
rustup target add {{TARGET}}
|
|
|
cross build --release --target {{TARGET}}
|
|
|
just tar {{BINARY}} {{TARGET}}
|
|
|
just zip {{BINARY}} {{TARGET}}
|
|
|
|
|
|
+[group('binaries')]
|
|
|
binary_static BINARY TARGET:
|
|
|
rustup target add {{TARGET}}
|
|
|
RUSTFLAGS='-C target-feature=+crt-static' cross build --release --target {{TARGET}}
|
|
|
just tar_static {{BINARY}} {{TARGET}}
|
|
|
just zip_static {{BINARY}} {{TARGET}}
|
|
|
|
|
|
+[group('binaries')]
|
|
|
binary_no_libgit BINARY TARGET:
|
|
|
rustup target add {{TARGET}}
|
|
|
cross build --no-default-features --release --target {{TARGET}}
|
|
|
just tar {{BINARY}} {{TARGET}}
|
|
|
just zip {{BINARY}} {{TARGET}}
|
|
|
|
|
|
+[group('binaries')]
|
|
|
binary_static_no_libgit BINARY TARGET:
|
|
|
rustup target add {{TARGET}}
|
|
|
RUSTFLAGS='-C target-feature=+crt-static' cross build --no-default-features --release --target {{TARGET}}
|
|
|
just tar_static {{BINARY}} {{TARGET}}
|
|
|
just zip_static {{BINARY}} {{TARGET}}
|
|
|
|
|
|
+[group('binaries')]
|
|
|
checksum:
|
|
|
@echo "# Checksums"
|
|
|
@echo "## sha256sum"
|
|
|
@@ -194,6 +221,7 @@ alias c := cross
|
|
|
# Generate release binaries for EZA
|
|
|
#
|
|
|
# usage: cross
|
|
|
+[group('binaries')]
|
|
|
@cross:
|
|
|
# Setup Output Directory
|
|
|
mkdir -p ./target/"bin-$(convco version)"
|
|
|
@@ -229,6 +257,7 @@ alias c := cross
|
|
|
# Generate Checksums
|
|
|
# TODO: moved to gh-release just checksum
|
|
|
|
|
|
+[group('documentation')]
|
|
|
@mangen:
|
|
|
# Setup Output Directory
|
|
|
mkdir -p ./target/"man-$(convco version)"
|
|
|
@@ -237,6 +266,8 @@ alias c := cross
|
|
|
pandoc --standalone -f markdown -t man man/eza_colors-explanation.5.md > ./target/"man-$(convco version)"/eza_colors-explanation.5
|
|
|
tar czvf ./target/"man-$(convco version)".tar.gz ./target/"man-$(convco version)"
|
|
|
|
|
|
+[group('documentation')]
|
|
|
+[group('binaries')]
|
|
|
@completions:
|
|
|
# Setup Output Directory
|
|
|
mkdir -p ./target/"completions-$(convco version)"
|
|
|
@@ -252,18 +283,21 @@ alias gen := gen_test_dir
|
|
|
|
|
|
test_dir := "tests/test_dir"
|
|
|
|
|
|
+[group('testing')]
|
|
|
gen_test_dir:
|
|
|
bash devtools/dir-generator.sh {{ test_dir }}
|
|
|
|
|
|
# Runs integration tests in nix sandbox
|
|
|
#
|
|
|
# Required nix, likely won't work on windows.
|
|
|
+[group('testing')]
|
|
|
@itest:
|
|
|
nix build -L ./#trycmd-local
|
|
|
|
|
|
# Runs integration tests in nix sandbox, and dumps outputs.
|
|
|
#
|
|
|
# WARNING: this can cause loss of work
|
|
|
+[group('testing')]
|
|
|
@idump:
|
|
|
rm ./tests/gen/*_nix.stderr -f || echo
|
|
|
rm ./tests/gen/*_nix.stdout -f || echo
|
|
|
@@ -276,11 +310,13 @@ gen_test_dir:
|
|
|
|
|
|
find result/dump -type f \( -name "*.stdout" -o -name "*.stderr" \) -exec sh -c 'base=$(basename {}); if [ -e "tests/gen/${base%.*}.toml" ]; then cp {} tests/gen/; elif [ -e "tests/cmd/${base%.*}.toml" ]; then cp {} tests/cmd/; elif [ -e "tests/ptests/${base%.*}.toml" ]; then cp {} tests/ptests/; fi' \;
|
|
|
|
|
|
+[group('testing')]
|
|
|
@itest-gen:
|
|
|
nix build -L ./#trycmd
|
|
|
|
|
|
# Fully re-generates the integration tests using powertest
|
|
|
|
|
|
+[group('testing')]
|
|
|
@regen:
|
|
|
which powertest >&- 2>&- || (echo -e "Powertest not installed. Please Clone the repo and run:\n\tcargo install --path . --locked" && exit 1)
|
|
|
echo "WARNING: this will delete all tests in tests/ptest"
|