From e62d9ee5a196c86203e2589ebbaddbdff302f998 Mon Sep 17 00:00:00 2001 From: Hubert Bugaj Date: Wed, 18 Feb 2026 14:07:11 +0100 Subject: [PATCH] chore: allow `quick-test` profile for `mise run install` --- .github/workflows/unit-tests.yml | 2 +- mise.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index fc6a6d68aa3d..a3421605e792 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -73,7 +73,7 @@ jobs: uses: taiki-e/install-action@nextest - name: Fetch proof params and RPC test snapshots run: | - cargo run --bin forest-dev --no-default-features --profile quick -- fetch-test-snapshots --actor-bundle $FOREST_ACTOR_BUNDLE_PATH + cargo run --bin forest-dev --no-default-features --profile quick-test -- fetch-test-snapshots --actor-bundle $FOREST_ACTOR_BUNDLE_PATH ls -ahl $FIL_PROOFS_PARAMETER_CACHE - uses: jdx/mise-action@v3 - run: | diff --git a/mise.toml b/mise.toml index 6280d98f31da..b0206b362084 100644 --- a/mise.toml +++ b/mise.toml @@ -2,7 +2,7 @@ description = "Installs all Forest binaries with a specified profile." usage = ''' arg "" help="Installation profile (quick, release, etc.)" default="release" { - choices "quick" "release" "release-lto-fat" "dev" "debugging" "profiling" + choices "quick" "quick-test" "release" "release-lto-fat" "dev" "debugging" "profiling" } flag "--slim" help="Install a slim version" flag "-v --verbose" help="Enable verbose output"