Skip to content

Commit

Permalink
Merge pull request #17222 from Homebrew/intel-runner-tag
Browse files Browse the repository at this point in the history
github_runner_matrix: add `-x86_64` to Intel runner names
  • Loading branch information
carlocab committed May 11, 2024
2 parents 0a4794c + 90c198f commit 71c4bfa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Library/Homebrew/github_runner_matrix.rb
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def generate_runners!
runner, timeout = if use_github_runner && github_runner_available
["macos-#{version}", GITHUB_ACTIONS_RUNNER_TIMEOUT]
else
["#{version}#{ephemeral_suffix}", runner_timeout]
["#{version}-x86_64#{ephemeral_suffix}", runner_timeout]
end

# macOS 12-x86_64 is usually slower.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def get_runners(file)
macos_version = MacOSVersion.new(v)
next if macos_version.unsupported_release?

out << v
out << "#{v}-x86_64"
out << "#{v}-arm64"
end

Expand Down

0 comments on commit 71c4bfa

Please sign in to comment.