mirror of
https://github.com/Jeuners/ECC.git
synced 2026-09-09 15:02:30 +02:00
feat: add Itô compute sponsor routing and Phase 2 plan (#2546)
* feat: add Ito compute sponsor routing * fix: harden Ito integration CI and framing
This commit is contained in:
parent
5deee34c93
commit
96789caaf9
17 changed files with 1053 additions and 38 deletions
|
|
@ -17,6 +17,7 @@ const {
|
|||
normalizeInstallRequest,
|
||||
parseInstallArgs,
|
||||
} = require('./lib/install/request');
|
||||
const { getComputeSponsorCopy } = require('./lib/compute-sponsor');
|
||||
|
||||
function getHelpText() {
|
||||
const languages = listLegacyCompatibilityLanguages();
|
||||
|
|
@ -60,6 +61,9 @@ Options:
|
|||
--json Emit machine-readable plan/result JSON
|
||||
--help Show this help text
|
||||
|
||||
Compute:
|
||||
${getComputeSponsorCopy()}
|
||||
|
||||
Available languages:
|
||||
${languages.map(language => ` - ${language}`).join('\n')}
|
||||
|
||||
|
|
@ -115,6 +119,8 @@ function printHumanPlan(plan, dryRun) {
|
|||
if (!dryRun) {
|
||||
console.log(`\nDone. Install-state written to ${plan.installStatePath}`);
|
||||
}
|
||||
|
||||
console.log('\nCompute: ' + getComputeSponsorCopy());
|
||||
}
|
||||
|
||||
function main() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue