-
Notifications
You must be signed in to change notification settings - Fork 285
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump to Lima 1.0.0-beta.0 #7666
Conversation
scripts/dependencies/lima.ts
Outdated
if (platform === 'darwin') { | ||
platform = 'macos-11.amd64'; | ||
platform = 'macos-13.amd64'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Optional, would it make sense to go in a variable?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure what should go into a variable. I've turned the 4 lines into a single line with expression interpolations, but that's all I can think off.
The hard-coded macos-13
is a bit annoying, but I don't know how we can parameterize it; it depends on a GitHub Action workflow in a different repo...
@@ -36,24 +32,10 @@ func SetupLimaHome(appHome string) error { | |||
if !stat.Mode().IsDir() { | |||
return fmt.Errorf("path %q exists but isn't a directory", candidatePath) | |||
} | |||
os.Setenv("LIMA_HOME", candidatePath) | |||
_ = os.Setenv("LIMA_HOME", candidatePath) | |||
return nil |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should just return os.Setenv("LIMA_HOME", candidatePath)
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure
Get rid of `limactl.ventura`, we are going to use the macOS-13 binaries everywhere. Testing by the Lima project itself indicates that releases build on latest XCode still work on older macOS versions. Signed-off-by: Jan Dubois <jan.dubois@suse.com>
2a15be5
to
e6db46d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PTAL
Get rid of
limactl.ventura
, we are going to use the macOS-13 binaries everywhere. Testing by the Lima project itself indicates that releases build on latest XCode still work on older macOS versions.Fixes #7463
Closes #7669