Hello there :wave: Is there a specific reason why...
# macos
d
Hello there 👋 Is there a specific reason why version 5.12.1 is the last one to support an x86 macOS build? From 5.12.2 there ain't one Thanks a lot!
a
I’m pretty sure more recent are universal, are you seeing something different?
d
Well I could do the following:
Copy code
wget <https://github.com/osquery/osquery/releases/download/5.12.1/osquery-5.12.1_1.macos_x86_64.tar.gz>
Now when doing
Copy code
wget <https://github.com/osquery/osquery/releases/download/5.12.2/osquery-5.12.2_1.macos_x86_64.tar.gz>
there is a 404
Can you please elaborate on ".... are universal" ?
a
https://pkg.osquery.io/darwin/osquery-5.12.1.pkg <- universal would mean works on both intel and apple silicon macs?
Oh I see what you mean, https://github.com/osquery/osquery/releases/tag/5.12.2 only lists a Mac arm version
d
Which is quite odd 🥲 I looked at the commit history, changelog but couldn't find any relevant info on WHY there's that behaviour
s
I think the issue is that we never properly changed the name generation for the packages. It takes the arch of the system where it was built on, and the Github workflow is now running on arm machines. That being said the binary inside is a universal one.
d
Brilliant!!!!! Thanks a million for the explanation Stefano, really appreciate it !