Skip to content

Commit

Permalink
Merge pull request #8175 from rancher-sandbox/rddepman/lima/1.0.4.rd2…
Browse files Browse the repository at this point in the history
…-to-1.0.4.rd3

rddepman: bump lima from 1.0.4.rd2 to 1.0.4.rd3
  • Loading branch information
mook-as authored Feb 3, 2025
2 parents d56438e + d1602c8 commit 071ed7e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/rancher-desktop/assets/dependencies.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
lima: 1.0.4.rd2
lima: 1.0.4.rd3
qemu: 9.2.0.rd2
socketVMNet: 1.2.1
alpineLimaISO:
Expand Down
11 changes: 9 additions & 2 deletions scripts/dependencies/lima.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,14 @@ import semver from 'semver';
import { download, downloadTarGZ, getResource } from '../lib/download';

import {
DownloadContext, Dependency, AlpineLimaISOVersion, findChecksum, getOctokit, GitHubDependency, getPublishedReleaseTagNames, GitHubRelease,
AlpineLimaISOVersion,
Dependency,
DownloadContext,
findChecksum,
getOctokit,
getPublishedReleaseTagNames,
GitHubDependency,
GitHubRelease,
} from 'scripts/lib/dependencies';
import { simpleSpawn } from 'scripts/simple_process';

Expand Down Expand Up @@ -58,7 +65,7 @@ export class Lima implements Dependency, GitHubDependency {
let platform: string = context.platform;

if (platform === 'darwin') {
platform = `macos-13.${ process.env.M1 ? 'arm64' : 'amd64' }`;
platform = `macos-15.${ process.env.M1 ? 'arm64' : 'amd64' }`;
} else {
platform = 'linux.amd64';
}
Expand Down

0 comments on commit 071ed7e

Please sign in to comment.