From ad816dcd8ac891662e8fc259ad7bae9ec24a2ac8 Mon Sep 17 00:00:00 2001 From: nick black Date: Fri, 30 Aug 2024 03:32:52 -0400 Subject: [PATCH] ubuntu ci: cmake with -DUSE_LIBZFS=off --- .github/workflows/ubuntu_test.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ubuntu_test.yml b/.github/workflows/ubuntu_test.yml index 35c9164..89f0921 100644 --- a/.github/workflows/ubuntu_test.yml +++ b/.github/workflows/ubuntu_test.yml @@ -35,8 +35,7 @@ jobs: libudev-dev \ libpci-dev \ libpciaccess-dev \ - doctest-dev \ - libzfs-dev + doctest-dev - uses: actions/checkout@v2 @@ -44,7 +43,7 @@ jobs: run: | mkdir build && cd build cmake .. \ - -DCMAKE_BUILD_TYPE=Release + -DCMAKE_BUILD_TYPE=Release -DUSE_LIBZFS=off - name: make run: |