diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2021-12-19 14:01:08 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2021-12-19 14:19:16 -0500 |
commit | e717edc1ac08e93cd2cc6990de4ae7d5602066e4 (patch) | |
tree | 93011d7a74bbd624b4034eef2c50fd2b5908c1b4 /.github/workflows | |
parent | f6a57ee29c51a2498fbd43d91320a012b20cc8af (diff) | |
download | bfs-e717edc1ac08e93cd2cc6990de4ae7d5602066e4.tar.xz |
ci/macos: Switch back to macos-latest
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/macos.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 7378256..39a0f9c 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -4,12 +4,15 @@ on: [push, pull_request] jobs: build: - # macOS 11 is broken due to https://apple.stackexchange.com/a/425730/397839 - runs-on: macOS-10.15 + runs-on: macos-latest steps: - uses: actions/checkout@v2 + - name: Install dependencies + run: | + brew install coreutils + - name: Run tests run: | make -j$(sysctl -n hw.ncpu) distcheck |