You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Linux build runners are unable to actually build macos build packages since there's no current_mac_version
Presuming that we have multiple macos versions, it'd be nice to have per os version configs.
Currently, my personal mac is on Big Sur, while my work mac is on whatever the latest version is. This could be solved by adding in a field for os version in the profile manifest.
Before
version: "alpha"schema: "manifest"profiles:
work:
- core
- workpersonal:
- core
- dev
- personal
After
version: "alpha"schema: "manifest"profiles:
work:
dependencies:
- core
- workos_versions:
macos:
- 11.7
- latestlinux
- <insert glinux version here>personal:
dependencies:
- core
- dev
- personalos_versions:
macos:
- 11.5
- latestlinux
- <insert whatever raspberry-pi or other personal project linux version here>
The text was updated successfully, but these errors were encountered:
right now, we do a check in our default settings for macos that looks like this:
This comes with two major drawback:
current_mac_version
Big Sur
, while my work mac is on whatever the latest version is. This could be solved by adding in a field for os version in the profile manifest.Before
After
The text was updated successfully, but these errors were encountered: