Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add macOS 14 M1 runner #61

Merged
merged 2 commits into from
Mar 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
test-bot:
strategy:
matrix:
os: [macos-11, macos-12, macos-13]
os: [macos-12, macos-13, macos-14]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Homebrew
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:

- name: Upload bottles as artifact
if: always() && github.event_name == 'pull_request'
uses: actions/upload-artifact@main
uses: actions/upload-artifact@v3
with:
name: bottles
path: "*.bottle.*"
5 changes: 1 addition & 4 deletions Formula/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@ class ArmNoneEabiGccAT8 < Formula

# The bottles are built on systems with the CLT installed, and do not work
# out of the box on Xcode-only systems due to an incorrect sysroot.
pour_bottle? do
reason "The bottle needs the Xcode CLT to be installed."
satisfy { MacOS::CLT.installed? }
end
pour_bottle? only_if: :clt_installed

keg_only "it might interfere with other version of arm-gcc.\n" \
"This is useful if you want to have multiple version of arm-none-eabi-gcc\n" \
Expand Down
5 changes: 1 addition & 4 deletions Formula/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@ class ArmNoneEabiGccAT9 < Formula

# The bottles are built on systems with the CLT installed, and do not work
# out of the box on Xcode-only systems due to an incorrect sysroot.
pour_bottle? do
reason "The bottle needs the Xcode CLT to be installed."
satisfy { MacOS::CLT.installed? }
end
pour_bottle? only_if: :clt_installed

keg_only "it might interfere with other version of arm-gcc.\n" \
"This is useful if you want to have multiple version of arm-none-eabi-gcc\n" \
Expand Down
Loading