mirror of
https://github.com/google/cpu_features.git
synced 2025-07-03 22:23:18 +02:00
ci: Add amd64 macos bazel workflow (#324)
* ci: Add amd64 MacOS Bazel job * bazel: Fix MacOS build * add amd64_macos_bazel badge
This commit is contained in:
@ -78,7 +78,8 @@ const:
|
||||
case BuildSystem.CMake:
|
||||
return os == Os.Linux || cpu == Cpu.amd64;
|
||||
case BuildSystem.Bazel:
|
||||
return os == Os.Linux && (cpu == Cpu.amd64 || cpu == Cpu.AArch64);
|
||||
return (os == Os.Linux && (cpu == Cpu.amd64 || cpu == Cpu.AArch64))
|
||||
|| (os == Os.MacOS && cpu == Cpu.amd64);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user