Skip to content
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
12 changes: 6 additions & 6 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
fail-fast: false
matrix:
os:
- name: macos-12
- name: macos-15-intel
arch: x86_64
- name: macos-14
arch: aarch64
Expand All @@ -41,13 +41,12 @@ jobs:
- arm-unknown-linux-musleabihf
- mipsel-unknown-linux-gnu
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Install crosstool-ng
run: |
brew install coreutils
brew install --HEAD crosstool-ng
brew install coreutils crosstool-ng
# fix python env in the runner
brew unlink python@3.12 && brew link --overwrite python@3.12
brew unlink python@3.14 && brew link --overwrite python@3.14
python3 --version
- name: Mount volumes
run: |
Expand All @@ -74,7 +73,8 @@ jobs:
cd -
mv /Volumes/tools/${{ matrix.target }}-${{ matrix.os.arch }}-darwin.tar.gz .
sha256sum ${{ matrix.target }}-${{ matrix.os.arch }}-darwin.tar.gz | tee ${{ matrix.target }}-${{ matrix.os.arch }}-darwin.tar.gz.sha256
- uses: actions/attest-build-provenance@v1
- uses: actions/attest-build-provenance@v3
if: "startsWith(github.ref, 'refs/tags/')"
with:
subject-path: ${{ matrix.target }}-${{ matrix.os.arch }}-darwin.tar.gz
- name: Upload Toolchain
Expand Down
2 changes: 1 addition & 1 deletion aarch64-unknown-linux-gnu.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class Aarch64UnknownLinuxGnu < Formula
depends_on "bdw-gc"
depends_on "guile"
depends_on "zstd"
depends_on "python@3.12"
depends_on "python@3.14"

if Hardware::CPU.arm?
url "https://github.com/messense/homebrew-macos-cross-toolchains/releases/download/v13.3.0/aarch64-unknown-linux-gnu-aarch64-darwin.tar.gz"
Expand Down
Loading