Skip to content

Commit

Permalink
Lima for macOS is now build on macOS 15 instead of 13
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Dubois <[email protected]>
  • Loading branch information
jandubois committed Feb 3, 2025
1 parent 7de376b commit d1602c8
Showing 1 changed file with 9 additions and 2 deletions.
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 d1602c8

Please sign in to comment.