mirror of https://github.com/ospab/ostp.git
fix: explicitly execute cargo through rustup run to bypass broken macOS runner shims
This commit is contained in:
parent
0773f9be9d
commit
578dcf6f9b
|
|
@ -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 }}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue