diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-10-05 17:29:52 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-10-05 17:29:52 -0400 |
commit | 2d0cd364b63e26d7ede70cc1d6f85bea87850d84 (patch) | |
tree | e6f2501b66e2acbf9d18788892027a6ecc7aaad3 | |
parent | 6e12ff030a380d0f13c505b5285ceb589761b68d (diff) | |
download | bfs-2d0cd364b63e26d7ede70cc1d6f85bea87850d84.tar.xz |
ci: Install expect for unbuffer
-rw-r--r-- | .github/workflows/ci.yml | 5 | ||||
-rw-r--r-- | .github/workflows/codecov.yml | 1 |
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 \ |