Skip to content

chore(no-story): add script to display commands for a given evergreen task #3731

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions etc/expand-tasks.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
// usage: node expand-task.js <task name>
// must be run from root of the Node driver
//
// The output is pipeable: `node expand-task.js <task name> | jq '.'`

import { readFileSync } from 'fs';
import { load } from 'js-yaml';
import { gte } from 'semver';
import { Readable } from 'stream';
import { inspect } from 'util';

if (!gte(process.version, '16.0.0')) {
console.error('expand-tasks.mjs requires Node16+');
process.exit(1);
}

const config = load(readFileSync('.evergreen/config.yml'));
const taskName = (process.argv[2] ?? '').trim();

const task = config.tasks.find(({ name }) => name === taskName);

if (!task) {
process.exit();
}

const commands = task.commands.flatMap(({ func }) => config.functions[func]);

if (process.stdout.isTTY) {
console.log(inspect(commands, { depth: Infinity, colors: true }));
} else {
Readable.from(commands)
.map(command => JSON.stringify(command))
.pipe(process.stdout);
}