From e4132fb2a4e8c9f879427c3d182ee89944b34e26 Mon Sep 17 00:00:00 2001 From: tuxuser <462620+tuxuser@users.noreply.github.com> Date: Mon, 2 Sep 2024 20:19:36 +0200 Subject: [PATCH] ci: Test --- .github/workflows/build.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f5276435..5fbe46a0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: run: shell: msys2 {0} env: - VER_LIBNTFS3G: 2021.8.22 + VER_NTFSPROGS: 2.0.0 steps: - run: git config --global core.autocrlf input shell: pwsh @@ -39,11 +39,12 @@ jobs: run: | cd ${GITHUB_WORKSPACE} mkdir build_ntfs3g - wget https://tuxera.com/opensource/ntfs-3g_ntfsprogs-${VER_LIBNTFS3G}.tgz - tar xzf ntfs-3g_ntfsprogs-${VER_LIBNTFS3G}.tgz -C build_ntfs3g/ - cd build_ntfs3g/ntfs-3g_ntfsprogs-${VER_LIBNTFS3G} - ./configure --disable-device-default-io-ops --disable-crypto --disable-ntfs-3g - make ntfsprogs + wget http://prdownloads.sourceforge.net/linux-ntfs/ntfsprogs-${VER_NTFSPROGS}.tar.gz + tar xzf ntfsprogs-${VER_NTFSPROGS}.tar.gz -C build_ntfs3g/ + cd build_ntfs3g/ntfsprogs-${VER_NTFSPROGS} + ./configure --disable-default-device-io-ops --disable-crypto + make + make install - run: | cd ${GITHUB_WORKSPACE} chmod +x autogen.sh