Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
woelper committed Mar 4, 2024
1 parent 4e2abbe commit 62a6068
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check_arm7.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run: cargo install cross

- name: Cross-compile arm
run: cross check --target armv7-unknown-linux-gnueabihf --no-default-features
run: cross check --target armv7-unknown-linux-gnueabihf --no-default-features --features spirv

- name: Check output
run: ls target/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_netbsd_minimal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ jobs:
run: |
PATH=$HOME/.cargo/bin:$PATH
export PATH
cargo check --no-default-features
cargo check --no-default-features --features spirv
2 changes: 1 addition & 1 deletion .github/workflows/check_osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: Swatinem/rust-cache@v2

- name: Check without default features
run: cargo check --no-default-features
run: cargo check --no-default-features --features spirv

# - name: Check with build features
# run: cargo check --features heif
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check_ubuntu_no_default_features.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
# run: cargo build

- name: cargo check without default features
run: cargo check --no-default-features
run: cargo check --no-default-features --features spirv

- name: cargo check without build features
- name: cargo check with heif
run: PKG_CONFIG_PATH=libheif/build cargo check --features heif

4 changes: 2 additions & 2 deletions .github/workflows/check_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
run: vcpkg install libheif:x64-windows-static

- name: cargo check without default features
run: cargo check --no-default-features
run: cargo check --no-default-features --features spirv

- name: clean
run: cargo clean

- name: cargo check build features
- name: cargo check build features & heif
run: cargo check --features heif
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ shaderc = ["notan/shaderc"]
spirv = ["notan/glsl-to-spirv"]



[target.'cfg(target_os = "macos")'.dependencies]
fruitbasket = "0.10.0"

Expand Down

0 comments on commit 62a6068

Please sign in to comment.