From 9cf46be341b8e80195aa49de8ea72c3b19babe02 Mon Sep 17 00:00:00 2001 From: Aleksa Sarai Date: Thu, 12 Mar 2026 20:46:07 +0900 Subject: [PATCH] gha: install libpathrs for conmon test as well Commit 192e3d416f13 ("ci: add conmon tests run") was merged without rebasing on top of commit e2c989b7e172 ("build: enable libpathrs by default"), causing build failures when it was merged. The solution is to just use the same install script as the rest of CI from commit 7322b05f41d0 ("ci: build and install libpathrs"). Fixes: 192e3d416f13 ("ci: add conmon tests run") Signed-off-by: Aleksa Sarai --- .github/workflows/validate.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index a7d20bbe438..d55800370fe 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -281,6 +281,9 @@ jobs: run: | sudo apt update sudo apt -y install libseccomp-dev libglib2.0-dev libsystemd-dev socat + - name: install libpathrs ${{ env.LIBPATHRS_VERSION }} + run: | + sudo -E PATH="$PATH" ./script/build-libpathrs.sh "$LIBPATHRS_VERSION" /usr - name: install Go uses: actions/setup-go@v6