File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 32
32
HOMEBREW_NO_AUTO_UPDATE : 1
33
33
HOMEBREW_NO_INSTALL_FROM_API : 1
34
34
HOMEBREW_NO_BUILD_ERROR_ISSUES : 1
35
+ HOMEBREW_ARM64_TESTING : 1
35
36
RUN_URL : ${{github.event.repository.html_url}}/actions/runs/${{github.run_id}}
36
37
DISPATCH_BUILD_BOTTLE_SENDER : ${{ github.event.sender.login }}
37
38
DISPATCH_BUILD_BOTTLE_FORMULA : ${{ inputs.formula }}
@@ -112,7 +113,9 @@ jobs:
112
113
matrix.each do |entry|
113
114
runner = entry.fetch("runner")
114
115
115
- bottle_tag = if runner.start_with?("ubuntu") || runner.start_with?("linux")
116
+ bottle_tag = if runner.start_with?("ubuntu-") && runner.end_with?("-arm")
117
+ Utils::Bottles.tag(:arm64_linux)
118
+ elsif runner.start_with?("ubuntu") || runner.start_with?("linux")
116
119
Utils::Bottles.tag(:x86_64_linux)
117
120
elsif runner.match?(/^\d+-/)
118
121
os_version, arch, _ = *runner.split("-")
You can’t perform that action at this time.
0 commit comments