rs-toolchain/src/args.ts

53 lines
1.5 KiB
TypeScript
Raw Normal View History

2020-03-24 15:26:10 +02:00
import { input } from "@actions-rs/core";
import { debug } from "@actions/core";
import { existsSync, readFileSync } from "fs";
2019-09-12 16:44:29 +03:00
export interface ToolchainOptions {
2020-03-24 15:26:10 +02:00
name: string;
target: string | undefined;
default: boolean;
override: boolean;
profile: string | undefined;
components: string[] | undefined;
2019-09-12 16:44:29 +03:00
}
function determineToolchain(overrideFile: string): string {
2020-03-24 15:26:10 +02:00
const toolchainInput = input.getInput("toolchain", { required: false });
if (toolchainInput) {
debug(`using toolchain from input: ${toolchainInput}`);
2020-03-24 15:26:10 +02:00
return toolchainInput;
}
if (!existsSync(overrideFile)) {
2020-03-24 15:26:10 +02:00
throw new Error(
"toolchain input was not given and repository does not have a rust-toolchain file"
);
}
const rustToolchainFile = readFileSync(overrideFile, {
encoding: "utf-8",
2020-03-24 15:26:10 +02:00
flag: "r",
}).trim();
debug(`using toolchain from rust-toolchain file: ${rustToolchainFile}`);
return rustToolchainFile;
}
2020-03-24 15:26:10 +02:00
export function getToolchainArgs(overrideFile: string): ToolchainOptions {
let components: string[] | undefined = input.getInputList("components");
if (components && components.length === 0) {
components = undefined;
}
return {
name: determineToolchain(overrideFile),
target: input.getInput("target") || undefined,
default: input.getInputBool("default"),
override: input.getInputBool("override"),
profile: input.getInput("profile") || undefined,
components: components,
};
}