diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-10-03 10:11:42 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-10-03 10:11:42 -0400 |
commit | ee6eea07f8a2c73d0b49f8e2199016116a411557 (patch) | |
tree | 189668f9e46a2b518b23733095a90e9dcc56969c /.github/workflows | |
parent | c1103834065bbd1182a90b9723dbd89a4a908731 (diff) | |
download | bfs-ee6eea07f8a2c73d0b49f8e2199016116a411557.tar.xz |
ci/macos: Don't install coreutils
Since we build our own touch(1) implementation, we no longer need to
work around the macOS bug.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 971a4df..db7baca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,10 +49,6 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Install dependencies - run: | - brew install coreutils - - name: Run tests run: | make -j$(sysctl -n hw.ncpu) distcheck |