From: Theodore Ts'o Date: Wed, 26 Feb 2025 03:39:52 +0000 (-0500) Subject: Fix continuous integration testing workflow on Windows with mingw64 X-Git-Tag: v1.47.3-rc1~119 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=181d1c2e6f2d6200559b02f7ff6ac5b251d18500;p=thirdparty%2Fe2fsprogs.git Fix continuous integration testing workflow on Windows with mingw64 The subs Makefile target has been renamed to top-deps Fixes: 3c8d4f6e0183 ('Fix parallel "make -j install"') Signed-off-by: Theodore Ts'o --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc961bcb..8d1837b3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -142,7 +142,7 @@ jobs: # dependencies: all libraries except libss. The build system doesn't want # to build just those parts, though, so do it one step at a time... - run: ./configure CFLAGS="$DEF_CFLAGS" - - run: make -j8 subs V=1 CFLAGS_WARN="-Werror" + - run: make -j8 top-deps V=1 CFLAGS_WARN="-Werror" - run: make -j8 -C lib/et/ all V=1 CFLAGS_WARN="-Werror" - run: make -j8 -C lib/uuid/ all V=1 CFLAGS_WARN="-Werror" - run: make -j8 -C lib/blkid/ all V=1 CFLAGS_WARN="-Werror"