Files
codex/.github/scripts/nextest-archive-build.sh
2026-02-21 00:52:18 -08:00

14 lines
278 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
archive_file="$1"
target="${2:-x86_64-unknown-linux-gnu}"
cargo_profile="${3:-ci-test}"
cargo nextest archive \
--all-features \
--target "$target" \
--cargo-profile "$cargo_profile" \
--timings \
--archive-file "$archive_file"