Skip to content

Commit

Permalink
ci: revert to free GHA runners for tests (#7064)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored Feb 9, 2024
1 parent a1fc146 commit 0840762
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/scripts/matrices.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ def __init__(


is_pr = os.environ.get("EVENT_NAME") == "pull_request"
t_linux_x86 = Target("Linux-22.04", "x86_64-unknown-linux-gnu", "linux-amd64")
t_linux_x86 = Target("ubuntu-latest", "x86_64-unknown-linux-gnu", "linux-amd64")
# TODO: Figure out how to make this work
# t_linux_arm = Target("Linux-22.04", "aarch64-unknown-linux-gnu", "linux-aarch64")
t_macos = Target("macos-latest-large", "x86_64-apple-darwin", "macosx-amd64")
t_windows = Target("Windows", "x86_64-pc-windows-msvc", "windows-amd64")
# t_linux_arm = Target("ubuntu-latest", "aarch64-unknown-linux-gnu", "linux-aarch64")
t_macos = Target("macos-latest", "x86_64-apple-darwin", "macosx-amd64")
t_windows = Target("windows-latest", "x86_64-pc-windows-msvc", "windows-amd64")
targets = [t_linux_x86, t_windows] if is_pr else [t_linux_x86, t_macos, t_windows]

config = [
Expand Down

0 comments on commit 0840762

Please sign in to comment.