mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-24 22:30:03 +00:00
Fix cond in integration test CI
Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
parent
bdef2169a3
commit
272d049cf6
1 changed files with 2 additions and 2 deletions
|
@ -93,14 +93,14 @@ jobs:
|
||||||
|
|
||||||
- name: Build debug
|
- name: Build debug
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
if: ${{ ! startsWith(github.ref, 'refs/tags/v') && matrix.use-cross == 'false' }}
|
if: ${{ ! startsWith(github.ref, 'refs/tags/v') && matrix.use-cross }}
|
||||||
with:
|
with:
|
||||||
command: build
|
command: build
|
||||||
args: --target ${{ matrix.target }} --no-default-features --features pkg-config,native-tls
|
args: --target ${{ matrix.target }} --no-default-features --features pkg-config,native-tls
|
||||||
|
|
||||||
- name: Build debug with cross compilation
|
- name: Build debug with cross compilation
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
if: ${{ ! startsWith(github.ref, 'refs/tags/v') && matrix.use-cross == 'true' }}
|
if: ${{ ! startsWith(github.ref, 'refs/tags/v') && matrix.use-cross }}
|
||||||
with:
|
with:
|
||||||
command: build
|
command: build
|
||||||
args: --target ${{ matrix.target }} --no-default-features --features rustls
|
args: --target ${{ matrix.target }} --no-default-features --features rustls
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue