-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
- Loading branch information
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/// <reference types="node" /> | ||
export declare const rootFile: string; | ||
export declare function addToPath(): void; | ||
export declare function skipActivationFlag(env: NodeJS.ProcessEnv): string; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/** | ||
* Gather action inputs and then run action. | ||
*/ | ||
export declare function run(): Promise<void>; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
export default install; | ||
/** | ||
* Set up an instance of MATLAB on the runner. | ||
* | ||
* First, system dependencies are installed. Then the ephemeral installer script | ||
* is invoked. | ||
* | ||
* @param platform Operating system of the runner (e.g., "win32" or "linux"). | ||
* @param release Release of MATLAB to be set up (e.g., "latest" or "R2020a"). | ||
*/ | ||
export declare function install(platform: string, release: string, skipActivationFlag: string): Promise<void>; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export declare function installDir(platform: string): string; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"matlabBatchInstallerUrl": "https://ssd.mathworks.com/supportfiles/ci/matlab-batch/v0/install.sh", | ||
"matlabDepsUrl": "https://ssd.mathworks.com/supportfiles/ci/matlab-deps/v0/install.sh", | ||
"ephemeralInstallerUrl": "https://ssd.mathworks.com/supportfiles/ci/ephemeral-matlab/v0/ci-install.sh" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/** | ||
* Download and run a script on the runner. | ||
* | ||
* @param platform Operating system of the runner (e.g., "win32" or "linux"). | ||
* @param url URL of the script to run. | ||
* @param args Arguments to pass to the script. | ||
*/ | ||
export declare function downloadAndRunScript(platform: string, url: string, args?: string[]): Promise<undefined>; | ||
/** | ||
* Generate platform-specific command to run a script. | ||
* | ||
* @param platform Operating system of the runner (e.g. "win32" or "linux"). | ||
* @param scriptPath Path to the script (on runner's filesystem). | ||
*/ | ||
export declare function generateExecCommand(platform: string, scriptPath: string): string; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.