From 0bbbe2883ef45b2027ea7395a691a855b1296cd1 Mon Sep 17 00:00:00 2001 From: Mostyn Bramley-Moore Date: Sun, 8 Dec 2024 00:10:42 +0100 Subject: [PATCH] ci: log bsdtar's version text, so we can see which support libraries were used (#2426) A few of libarchive's CI jobs don't find all the local support libraries that they could be using. This change makes it easier to see which of them are used. --- build/ci/build.sh | 1 + build/ci/github_actions/ci.cmd | 1 + 2 files changed, 2 insertions(+) diff --git a/build/ci/build.sh b/build/ci/build.sh index 0cc131cfd..687e8e1b4 100755 --- a/build/ci/build.sh +++ b/build/ci/build.sh @@ -147,6 +147,7 @@ for action in ${ACTIONS}; do ${MAKE} ${MAKE_ARGS} install DESTDIR="${BUILDDIR}/destdir" RET="$?" cd "${BUILDDIR}/destdir" && ls -lR . + ./usr/local/bin/bsdtar --version ;; distcheck) ${MAKE} ${MAKE_ARGS} distcheck || ( diff --git a/build/ci/github_actions/ci.cmd b/build/ci/github_actions/ci.cmd index 3f578d4aa..ecbe09eb9 100755 --- a/build/ci/github_actions/ci.cmd +++ b/build/ci/github_actions/ci.cmd @@ -150,6 +150,7 @@ IF "%1"=="deplibs" ( CD build_ci\cmake cmake --build . --target INSTALL --config Release || EXIT /b 1 ) + "C:\Program Files (x86)\libarchive\bin\bsdtar.exe" --version ) ELSE IF "%1"=="artifact" ( C:\windows\system32\tar.exe -c -C "C:\Program Files (x86)" --format=zip -f libarchive.zip libarchive ) ELSE ( -- 2.47.2