From f14a25e16235923528ce23083dfa363ff8684c91 Mon Sep 17 00:00:00 2001 From: John Whittington Date: Fri, 21 Jun 2024 11:24:55 +0200 Subject: [PATCH] fix build --- .github/workflows/build.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c17be3d..f99c21e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,9 +21,13 @@ jobs: fail-fast: false matrix: job: - - { os: ubuntu-latest, target: aarch64-unknown-linux-gnu, use-cross: true, feature-flags: "--all-features" } + # only default as don't generate docs or hwdb + - { os: ubuntu-latest, target: aarch64-unknown-linux-gnu, use-cross: true, feature-flags: "" } + # all ok as udev ignored on non-linux - { os: ubuntu-latest, target: x86_64-pc-windows-gnu, use-cross: true, feature-flags: "--all-features" } - - { os: ubuntu-latest, target: x86_64-unknown-linux-gnu, use-cross: false, feature-flags: "--all-features" } + # specificy to avoid udevlib + - { os: ubuntu-latest, target: x86_64-unknown-linux-gnu, use-cross: false, feature-flags: "-F=cli_generate" } + # all ok as udev ignored on non-linux - { os: macos-latest, target: universal-apple-darwin, use-cross: false, feature-flags: "--all-features" } steps: - uses: actions/checkout@v4