From e089698f3d2be2c4b13bbc5fd450b71efe4290ca Mon Sep 17 00:00:00 2001 From: Channing Conger Date: Sat, 9 May 2026 00:15:57 -0700 Subject: [PATCH] ci(v8): install upstream Rust target explicitly --- .github/workflows/v8-canary.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/v8-canary.yml b/.github/workflows/v8-canary.yml index 5a23ceaaa7..23cd74c3c9 100644 --- a/.github/workflows/v8-canary.yml +++ b/.github/workflows/v8-canary.yml @@ -306,18 +306,21 @@ jobs: python-version: "3.11" architecture: x64 - - name: Set up rusty_v8 Rust toolchain - uses: dtolnay/rust-toolchain@a0b273b48ed29de4470960879e8381ff45632f26 # 1.93.0 - with: - toolchain: "1.91.0" - targets: ${{ matrix.target }} - - name: Set up Codex Rust toolchain for Cargo smoke uses: dtolnay/rust-toolchain@a0b273b48ed29de4470960879e8381ff45632f26 # 1.93.0 with: toolchain: "1.93.0" targets: ${{ matrix.target }} + - name: Install rusty_v8 Rust toolchain + env: + TARGET: ${{ matrix.target }} + shell: bash + run: | + set -euo pipefail + rustup toolchain install 1.91.0 --profile minimal --no-self-update + rustup target add --toolchain 1.91.0 "${TARGET}" + - name: Write upstream submodule status shell: bash working-directory: upstream-rusty-v8