fix: explicitly execute cargo through rustup run to bypass broken macOS runner shims

This commit is contained in:
ospab 2026-05-15 16:46:19 +03:00
parent 0773f9be9d
commit 578dcf6f9b
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ jobs:
if: ${{ !matrix.use_cross && matrix.os != 'windows-latest' }} if: ${{ !matrix.use_cross && matrix.os != 'windows-latest' }}
shell: bash shell: bash
run: | run: |
cargo build --release --target ${{ matrix.target }} --bin ostp rustup run ${{ matrix.toolchain || 'stable' }} cargo build --release --target ${{ matrix.target }} --bin ostp
- name: Execute Specialized Cross-Compilation - name: Execute Specialized Cross-Compilation
if: ${{ matrix.use_cross }} if: ${{ matrix.use_cross }}