Always disable feature pkg-config in integration test CI

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
Jiahao XU 2022-07-23 20:01:09 +10:00
parent adbc2d4a11
commit f2d5d0291b
No known key found for this signature in database
GPG key ID: 591C0B03040416D6

View file

@ -91,20 +91,13 @@ jobs:
args: --target ${{ matrix.target }} --release
use-cross: ${{ matrix.use-cross }}
- name: Build debug with cross compilation
uses: actions-rs/cargo@v1
if: ${{ ! startsWith(github.ref, 'refs/tags/v') && matrix.use-cross == 'true' }}
with:
command: build
args: --target ${{ matrix.target }} --no-default-features
use-cross: true
- name: Build debug
uses: actions-rs/cargo@v1
if: ${{ ! startsWith(github.ref, 'refs/tags/v') }}
with:
command: build
args: --target ${{ matrix.target }} --no-default-features --features pkg-config
args: --target ${{ matrix.target }} --no-default-features
use-cross: ${{ matrix.use-cross }}
- name: Copy and rename utility
if: ${{ startsWith(github.ref, 'refs/tags/v') }}