mirror of
https://github.com/ClementTsang/bottom
synced 2025-02-18 14:18:27 +00:00
deployment: force usage of cross 0.2.1 for now (#755)
Locks cross in deployment builds to 0.2.1, as 0.2.2 seems to break some things for now.
This commit is contained in:
parent
2912859e52
commit
89f7705e21
1 changed files with 10 additions and 0 deletions
10
.github/workflows/build_releases.yml
vendored
10
.github/workflows/build_releases.yml
vendored
|
@ -132,6 +132,11 @@ jobs:
|
||||||
with:
|
with:
|
||||||
key: ${{ matrix.info.target }}
|
key: ${{ matrix.info.target }}
|
||||||
|
|
||||||
|
- name: Install cross if needed
|
||||||
|
if: matrix.info.cross == true
|
||||||
|
run: |
|
||||||
|
cargo install cross --locked --version=0.2.1
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
|
@ -273,6 +278,11 @@ jobs:
|
||||||
- name: Enable Rust cache
|
- name: Enable Rust cache
|
||||||
uses: Swatinem/rust-cache@cb2cf0cc7c5198d3364b9630e2c3d457f160790c # 1.4.0
|
uses: Swatinem/rust-cache@cb2cf0cc7c5198d3364b9630e2c3d457f160790c # 1.4.0
|
||||||
|
|
||||||
|
- name: Install cross if needed
|
||||||
|
if: matrix.info.cross == true
|
||||||
|
run: |
|
||||||
|
cargo install cross --locked --version=0.2.1
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Add table
Reference in a new issue