From a441e13598acb27a146fae6b8482fdbc811dc68f Mon Sep 17 00:00:00 2001 From: Laurent Cheylus Date: Tue, 2 Jan 2024 19:28:28 +0100 Subject: [PATCH] CI: install GNU coreutils package for FreeBSD workflow - util/show-utils.sh script is used by FreeBSD workflow => use realpath command from GNU coreutils instead of FreeBSD realpath. - install GNU coreutils (FreeBSD package coreutils) in style job Signed-off-by: Laurent Cheylus --- .github/workflows/freebsd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/freebsd.yml b/.github/workflows/freebsd.yml index c4d441a5572..25655f0917f 100644 --- a/.github/workflows/freebsd.yml +++ b/.github/workflows/freebsd.yml @@ -44,8 +44,8 @@ jobs: usesh: true sync: rsync copyback: false - # We need jq to run show-utils.sh and bash to use inline shell string replacement - prepare: pkg install -y curl sudo jq bash + # We need jq and GNU coreutils to run show-utils.sh and bash to use inline shell string replacement + prepare: pkg install -y curl sudo jq coreutils bash run: | ## Prepare, build, and test # implementation modelled after ref: