1
0
Fork 0
mirror of synced 2024-04-29 18:13:47 +12:00

Compile heif image support only with Rust 1.60.0 which is not used to create official binaries

This commit is contained in:
Rafał Mikrut 2022-08-27 21:46:08 +02:00
parent d3e7c2d777
commit 24b64a32c6

View file

@ -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"