From 24b64a32c65904c506b54270f0977ccbe5098cc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Mikrut?= Date: Sat, 27 Aug 2022 21:46:08 +0200 Subject: [PATCH] Compile heif image support only with Rust 1.60.0 which is not used to create official binaries --- .github/workflows/linux.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 12d4f15..653706e 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -34,15 +34,15 @@ jobs: - name: Install basic libraries run: sudo apt-get update; sudo apt install libgtk-4-dev libheif-dev -y - - name: Build Release - run: cargo build --release + - name: Build Release Heif + run: cargo build --release --features heif env: CARGO_INCREMENTAL: 0 RUSTFLAGS: "-C debuginfo=0" if: ${{ (matrix.type == 'release') && (matrix.toolchain == '1.60.0') }} - - name: Build Release Heif - run: cargo build --release --features heif + - name: Build Release + run: cargo build --release env: CARGO_INCREMENTAL: 0 RUSTFLAGS: "-C debuginfo=0"