mirror of https://github.com/ospab/ostp.git
CI/CD: Skip host-runner rustup target addition for Cross-Docker targets to prevent Tier-3 architecture compilation crashes
This commit is contained in:
parent
7c4abca29e
commit
e5980df243
|
|
@ -98,11 +98,16 @@ jobs:
|
|||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Initialize Rust ecosystem
|
||||
- name: Initialize Rust ecosystem (Native Host)
|
||||
if: ${{ !matrix.use_cross }}
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
with:
|
||||
targets: ${{ matrix.target }}
|
||||
|
||||
- name: Initialize Rust ecosystem (Cross Container Host)
|
||||
if: ${{ matrix.use_cross }}
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
|
||||
- name: Activate rust compilation caching
|
||||
uses: swatinem/rust-cache@v2
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue