mirror of
https://github.com/openai/codex.git
synced 2026-04-24 22:54:54 +00:00
14 lines
278 B
Bash
Executable File
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"
|