Deleted layout tests from bindings.rs
.
#76
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check and Test | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
workflow_dispatch: { } | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
run_tests_on_linux: | |
name: Test `cargo check/test` on Ubuntu | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: root suid tar | |
run: sudo chown root:sudo /bin/tar && sudo chmod u+s /bin/tar | |
- name: Cache APT | |
id: cache-apt | |
uses: actions/cache@v4 | |
with: | |
path: | | |
/etc/apt | |
/var/lib/apt | |
key: ${{ runner.os }}-apt | |
- name: Install libheif dependencies | |
uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: libheif-dev libdav1d-dev libnuma-dev | |
version: 1.18.2 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: "true" | |
- name: Run tests | |
run: | | |
cargo check -p libheif-sys --features use-bindgen,embedded-libheif-plugins | |
cargo test --features use-bindgen,embedded-libheif-plugins | |
run_tests_on_windows: | |
name: Test `cargo check/test` on Windows | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache rust artifacts | |
uses: Swatinem/rust-cache@v2 | |
with: | |
cache-all-crates: true | |
cache-on-failure: "true" | |
- name: Cache vcpkg | |
id: cache-vcpkg | |
uses: actions/cache@v4 | |
with: | |
path: "target/vcpkg" | |
key: ${{ runner.os }}-vcpkg | |
- name: Install cargo-vcpkg | |
run: cargo install cargo-vcpkg | |
- name: Build libheif | |
run: cargo vcpkg -v build | |
- name: Run tests | |
run: | | |
cargo check -p libheif-sys | |
cargo test |