Skip to content

Commit

Permalink
Fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fintelia committed Aug 5, 2023
1 parent a0392ca commit 3f9caf8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
features: ['', default, gif, jpeg, png, tiff, ico, pnm, tga, webp, bmp, hdr, dxt, dds, farbfeld, openexr, jpeg_rayon, webp-encoder]
features: ['', default, gif, jpeg, png, tiff, ico, pnm, tga, webp, bmp, hdr, dxt, dds, ff, exr, parallel, webp-native, avif-native]
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -52,12 +52,12 @@ jobs:
if: ${{ matrix.rust == '1.64.0' }}
run: mv Cargo.lock.msrv Cargo.lock
- name: build
run: cargo build -v --features webp,webp-encoder
run: cargo build -v --features webp-native
- name: test
if: ${{ matrix.rust != '1.64.0' }}
run: >
cargo test -v --features webp,webp-encoder &&
cargo doc -v --features webp,webp-encoder
cargo test -v --features webp-native &&
cargo doc -v --features webp-native
test_big_endian:
# github actions does not support big endian systems directly, but it does support QEMU.
Expand All @@ -66,7 +66,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
features: ['', default, webp, webp-encoder]
features: ['', default, webp-native]

# we are using the cross project for cross compilation to mips:
# https://github.com/cross-rs/cross
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@stable
- name: build
run: cargo build -v --no-default-features --features="avif-decoder"
run: cargo build -v --no-default-features --features="avif-native"
env:
SYSTEM_DEPS_DAV1D_BUILD_INTERNAL: always

Expand Down

0 comments on commit 3f9caf8

Please sign in to comment.