From a7bb09559f3f05fab4f47e75160bf982507ab492 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Wed, 1 Jun 2022 22:36:25 -0700 Subject: [PATCH] Switch the github macOS CI over to 12.4, which is current. Needed because the build now relies on `readlink -f`, but I don't think we really care about old versions of macOS anyway, since Mac users upgrade pretty quickly? It's a bit odd that the _current_ version wasn't being tested in CI, but macOS 10.15 did still make some sense because it's the oldest version that's still getting security updates. --- .github/workflows/toybox.yml | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/.github/workflows/toybox.yml b/.github/workflows/toybox.yml index 79403217..f742add5 100644 --- a/.github/workflows/toybox.yml +++ b/.github/workflows/toybox.yml @@ -7,22 +7,8 @@ on: branches: [ master ] jobs: - MacOS-11_0: - runs-on: macos-11.0 - - steps: - - uses: actions/checkout@v2 - - name: Setup - run: brew install gnu-sed - - name: Configure - run: make macos_defconfig - - name: Build - run: make - - name: Test - run: VERBOSE=all make tests - - MacOS-10_15: - runs-on: macos-10.15 + MacOS-12: + runs-on: macos-12.4 steps: - uses: actions/checkout@v2 -- 2.39.2