2019-09-12 23:48:44 +03:00
|
|
|
import * as core from '@actions/core';
|
|
|
|
import * as exec from '@actions/exec';
|
|
|
|
import * as io from '@actions/io';
|
|
|
|
|
|
|
|
import * as input from './input';
|
|
|
|
|
2019-09-13 21:34:47 +03:00
|
|
|
const CROSS_REV: string = '69b8da7da287055127812c9e4b071756c2b98545';
|
|
|
|
|
2019-09-12 23:48:44 +03:00
|
|
|
async function getCross(): Promise<string> {
|
|
|
|
try {
|
|
|
|
return await io.which('cross', true);
|
|
|
|
} catch (error) {
|
2019-09-13 22:45:36 +03:00
|
|
|
core.debug('Unable to find cross, installing it now');
|
2019-09-12 23:48:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2019-09-13 22:45:36 +03:00
|
|
|
core.startGroup('Install cross');
|
2019-09-13 21:34:47 +03:00
|
|
|
core.warning('Git version of cross will be installed, \
|
2019-09-13 22:45:36 +03:00
|
|
|
see https://github.com/actions-rs/cargo/issues/1');
|
2019-09-13 21:34:47 +03:00
|
|
|
await exec.exec('cargo', [
|
|
|
|
'install',
|
|
|
|
'--rev',
|
|
|
|
CROSS_REV,
|
|
|
|
'--git',
|
|
|
|
'https://github.com/rust-embedded/cross.git'
|
|
|
|
]);
|
2019-09-12 23:48:44 +03:00
|
|
|
} catch (error) {
|
|
|
|
core.setFailed(error.message);
|
2019-09-13 22:45:36 +03:00
|
|
|
throw new Error(error);
|
|
|
|
} finally {
|
|
|
|
core.endGroup();
|
2019-09-12 23:48:44 +03:00
|
|
|
}
|
|
|
|
|
2019-09-13 21:34:47 +03:00
|
|
|
// Expecting it to be in PATH already
|
2019-09-12 23:48:44 +03:00
|
|
|
return 'cross';
|
|
|
|
}
|
|
|
|
|
|
|
|
async function run() {
|
|
|
|
const actionInput = input.parse();
|
|
|
|
|
|
|
|
let program;
|
|
|
|
if (actionInput.useCross) {
|
|
|
|
program = await getCross();
|
|
|
|
} else {
|
|
|
|
program = 'cargo';
|
|
|
|
}
|
|
|
|
|
2019-09-13 21:34:47 +03:00
|
|
|
let args: string[] = [];
|
2019-09-12 23:48:44 +03:00
|
|
|
if (actionInput.toolchain) {
|
|
|
|
args.push(`+${actionInput.toolchain}`);
|
|
|
|
}
|
2019-09-13 21:34:47 +03:00
|
|
|
args.push(actionInput.command);
|
2019-09-12 23:48:44 +03:00
|
|
|
args = args.concat(actionInput.args);
|
|
|
|
|
|
|
|
try {
|
|
|
|
await exec.exec(program, args);
|
|
|
|
} catch (error) {
|
|
|
|
core.setFailed(error.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
run();
|