summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2021-12-10 15:49:43 -0500
committerTavian Barnes <tavianator@tavianator.com>2021-12-10 16:01:21 -0500
commitf6a57ee29c51a2498fbd43d91320a012b20cc8af (patch)
tree2c0149be383b218055f93e66a51b2bdda01a939b
parentc58217ebdcc3e953572cf580e6ec24ceb8010a3f (diff)
downloadbfs-f6a57ee29c51a2498fbd43d91320a012b20cc8af.tar.xz
ci/macos: Downgrade to macOS 10.15
macOS 11 comes with a broken touch(1) that ignores -h. Work around it for now by downgrading macOS. Link: https://apple.stackexchange.com/a/425730/397839
-rw-r--r--.github/workflows/macos.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index ab359e1..7378256 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -4,7 +4,8 @@ on: [push, pull_request]
jobs:
build:
- runs-on: macos-latest
+ # macOS 11 is broken due to https://apple.stackexchange.com/a/425730/397839
+ runs-on: macOS-10.15
steps:
- uses: actions/checkout@v2