summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2023-10-05 17:29:52 -0400
committerTavian Barnes <tavianator@tavianator.com>2023-10-05 17:29:52 -0400
commit2d0cd364b63e26d7ede70cc1d6f85bea87850d84 (patch)
treee6f2501b66e2acbf9d18788892027a6ecc7aaad3 /.github/workflows
parent6e12ff030a380d0f13c505b5285ceb589761b68d (diff)
downloadbfs-2d0cd364b63e26d7ede70cc1d6f85bea87850d84.tar.xz
ci: Install expect for unbuffer
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml5
-rw-r--r--.github/workflows/codecov.yml1
2 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e781055..065fcfd 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -16,6 +16,7 @@ jobs:
sudo dpkg --add-architecture i386
sudo apt-get update -y
sudo apt-get install -y \
+ expect \
gcc-multilib \
libgcc-s1:i386 \
acl \
@@ -49,6 +50,10 @@ jobs:
steps:
- uses: actions/checkout@v3
+ - name: Install dependencies
+ run: |
+ brew install expect
+
- name: Run tests
run: |
make -j$(sysctl -n hw.ncpu) distcheck
diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml
index b06ea62..073479a 100644
--- a/.github/workflows/codecov.yml
+++ b/.github/workflows/codecov.yml
@@ -13,6 +13,7 @@ jobs:
run: |
sudo apt-get update -y
sudo apt-get install -y \
+ expect \
gcc \
acl \
libacl1-dev \