Skip to content

Commit 9d125a1

Browse files
committed
Ensure we have /bin/bash on FreeBSD
Used in some tests
1 parent d078dad commit 9d125a1

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/ci-freebsd.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ jobs:
6262
run: |
6363
sudo pkg upgrade -y
6464
sudo pkg install -y \
65+
bash \
6566
brotli \
6667
curl \
6768
cyrus-sasl \
@@ -90,6 +91,9 @@ jobs:
9091
echo "#! /bin/sh" | sudo tee /usr/local/bin/nproc
9192
echo "sysctl -n hw.ncpu" | sudo tee -a /usr/local/bin/nproc
9293
sudo chmod +x /usr/local/bin/nproc
94+
if [ ! -f /bin/bash ]; then
95+
sudo ln -s /usr/local/bin/bash /bin/bash
96+
fi
9397
freebsd-version
9498
cd freeradius
9599
./configure

0 commit comments

Comments
 (0)