Skip to content

Commit

Permalink
ci: disable aarch64 mac tests (foundry-rs#5932)
Browse files Browse the repository at this point in the history
  • Loading branch information
onbjerg authored Sep 27, 2023
1 parent 163cccd commit 96ab913
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/scripts/matrices.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ def __init__(self, os: str, target: str, name: str, flags: str, partition: int):
default_target,
Target("ubuntu-latest", "aarch64-unknown-linux-gnu"),
Target("macos-latest", "x86_64-apple-darwin"),
Target("macos-latest", "aarch64-apple-darwin"),
# Disabled since the test binary will be built for M1/M2, but there are no
# GitHub runners capable of executing those binaries.
# Target("macos-latest", "aarch64-apple-darwin"),
Target("windows-latest", "x86_64-pc-windows-msvc"),
]

Expand Down

0 comments on commit 96ab913

Please sign in to comment.