From a2470650d5df9b0bf08bba0178ce5ebbb1d996ee Mon Sep 17 00:00:00 2001 From: fengmk2 Date: Fri, 24 May 2024 10:55:27 +0800 Subject: [PATCH] feat: mirror homebrew-macos-cross-toolchains (#690) https://github.com/messense/homebrew-macos-cross-toolchains/releases ## Summary by CodeRabbit - **New Features** - Added support for `homebrew-macos-cross-toolchains` in the binaries list, enhancing cross-toolchain capabilities for macOS users. --- config/binaries.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/config/binaries.ts b/config/binaries.ts index 76c864ab..8502ef04 100644 --- a/config/binaries.ts +++ b/config/binaries.ts @@ -918,6 +918,13 @@ const binaries = { repo: 'webdriverio-community/node-edgedriver', distUrl: 'https://developer.microsoft.com/zh-cn/microsoft-edge/tools/webdriver/', }, + 'homebrew-macos-cross-toolchains': { + category: 'homebrew-macos-cross-toolchains', + description: 'macOS cross compiler toolchains', + type: BinaryType.GitHub, + repo: 'messense/homebrew-macos-cross-toolchains', + distUrl: 'https://github.com/messense/homebrew-macos-cross-toolchains/releases', + }, } as const; export type BinaryName = keyof typeof binaries;