From 1eb2a3e272e65bd67ee0a8dcbccb623abece134d Mon Sep 17 00:00:00 2001 From: Thom Chiovoloni Date: Sun, 6 Dec 2020 08:39:29 -0800 Subject: [PATCH] Ugh, okay, alright, imgui-sys-bindgen is a problem for another day --- .github/workflows/ci.yml | 5 +++-- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ae0402..4fbccf8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,13 +45,14 @@ jobs: ${{ runner.os }}-target-lint-stable- ${{ runner.os }}-target-lint- - run: cargo clippy --workspace --all-targets + + - run: cargo clippy --manifest-path imgui-sys-bindgen/Cargo.toml # supported winit versions - run: cargo clippy --manifest-path imgui-winit-support/Cargo.toml --all-features --all-targets - run: cargo clippy --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-19 --all-targets - run: cargo clippy --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-20 --all-targets - run: cargo clippy --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-22 --all-targets - run: cargo clippy --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-23 --all-targets - rustfmt: name: Check rustfmt runs-on: ubuntu-latest @@ -129,7 +130,7 @@ jobs: restore-keys: | ${{ runner.os }}-target-test-${{ matrix.rust }}-${{ hashFiles('**/Cargo.toml') }} ${{ runner.os }}-target-test-${{ matrix.rust }}- - - run: cargo test --workspace + - run: cargo test --workspace --all-targets # - run: cargo test --manifest-path imgui-gfx-examples/Cargo.toml --no-default-features --features directx # if: runner.os == 'Windows' - run: cargo test --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-19 diff --git a/Cargo.toml b/Cargo.toml index 28afb10..f819820 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,5 +7,5 @@ members = [ "imgui-winit-support", "imgui-examples", "imgui-gfx-examples", - "imgui-sys-bindgen", ] +excluded = ["imgui-sys-bindgen"]