mirror of https://github.com/aminya/setup-cpp
21 lines
575 B
TypeScript
21 lines
575 B
TypeScript
import { getExecOutput } from "@actions/exec"
|
|
import { error } from "ci-log"
|
|
import { addEnv } from "envosman"
|
|
import { rcOptions } from "../cli-options.js"
|
|
|
|
export async function setupMacOSSDK() {
|
|
if (process.platform === "darwin") {
|
|
try {
|
|
const xcrun = await getExecOutput("xcrun --sdk macosx --show-sdk-path")
|
|
const sdkroot = xcrun.stdout || xcrun.stderr
|
|
if (sdkroot) {
|
|
await addEnv("SDKROOT", sdkroot.trim(), rcOptions)
|
|
} else {
|
|
error("SDKROOT not set")
|
|
}
|
|
} catch (e) {
|
|
error(e as Error | string)
|
|
}
|
|
}
|
|
}
|