* Change to unzip * Download kcl-samples as zip to public dir * Fix fetch:samples, e2e electron still not working * Change error message to be clearer * Refactor so that input and output directories of sim tests can be different * Add kcl samples test implementation * Update output since adding kcl_samples tests * Update kcl-samples branch * Fix git-ignore pattern to only apply to the root * Fix yarn install and yarn fetch:samples to work the first time * Remove unneeded exists check * Change to use kcl-samples in public directory * Add kcl-samples * Update output since updating kcl-samples * Update output files * Change to not fetch samples during yarn install * Update output after merge * Ignore kcl-samples in codespell * WIP: Don't run e2e if only kcl-samples changed * Conditionally run cargo tests * Fix to round floating point values in program memory arrays * Update output since merge and rounding numbers in memory * Fix memory redaction for floating point to find more values * Fix float redaction pattern * Update output since rounding floating point numbers * Add center to floating point pattern * Fix trigger to use picomatch syntax * Update output since rounding center * Remove kcl-samples github workflows * Enable Rust backtrace * Update output after re-running * Update output after changing order of post-extrude commands * Fix to have deterministic order of commands * Update output after reverting ordering changes * Update kcl-samples * Update output after updating samples * Fix error messages to show the names of all samples that failed * Change cargo test command to match current one * Update kcl-samples * Update output since updating kcl-samples * Add generate manifest workflow and yarn script * Fix error check to actually work * Change util function to be what we actually need * Move new files after merge * Fix paths since directory move * Add dependabot updates for kcl-samples * Add GitHub workflow to make PR to kcl-samples repo * Add GitHub workflow to check kcl-samples header comments * Fix worfklow to change to the right directory * Add auto-commit simulation test output changes * Add permissions to workflows * Fix to run git commit step * Install just if needed * Fix directory of justfile * Add installation of cargo-insta * Fix to use underscore * Fix to allow just command failure * Change to always install CLI tools and cache them * Trying to fix overwrite failing * Combine commands * Change reviewer * Change to PR targeting the next branch * Change git commands to not do unnecessary fetch * Comment out trigger for creating a PR * Update kcl-samples from next branch * Update outputs after kcl-samples change * Fix to use bash pipefail * Add rust backtrace * Print full env from sim tests * Change command to use long option name * Fix to use ci profile even when calling through just * Add INSTA_UPDATE=always * Fix git push by using an app token on checkout * Add comments * Fix to use bash options * Change to echo when no changes are found * Fix so that kcl-samples updates don't trigger full run * Fix paths to reflect new crate location * Fix path detection * Fix e2e job to ignore kcl_samples simulation test output * Fix the fetch logic for the KCL samples after vendoring (#5661) Fixes the last 2 E2E tests for #5460. --------- Co-authored-by: Pierre Jacquier <pierre@zoo.dev> Co-authored-by: Pierre Jacquier <pierrejacquier39@gmail.com> Co-authored-by: Frank Noirot <frank@zoo.dev>
67 lines
2.1 KiB
JavaScript
67 lines
2.1 KiB
JavaScript
const fs = require("fs");
|
|
const path = require("path");
|
|
|
|
const FILE_EXTENSION = ".kcl";
|
|
const MANIFEST_FILE = "manifest.json";
|
|
const COMMENT_PREFIX = "//";
|
|
|
|
// Function to read and parse .kcl files
|
|
const getKclMetadata = (projectPath, files) => {
|
|
const primaryKclFile = files.find((file) => file.includes("main.kcl")) ?? files.sort()[0];
|
|
const fullPathToPrimaryKcl = path.join(projectPath, primaryKclFile);
|
|
|
|
const content = fs.readFileSync(fullPathToPrimaryKcl, "utf-8");
|
|
const lines = content.split("\n");
|
|
|
|
if (lines.length < 2) {
|
|
return null;
|
|
}
|
|
|
|
const title = lines[0].replace(COMMENT_PREFIX, "").trim();
|
|
const description = lines[1].replace(COMMENT_PREFIX, "").trim();
|
|
|
|
return {
|
|
file: primaryKclFile,
|
|
// Assumed to ALWAYS be 1 level deep. That's the current practice.
|
|
pathFromProjectDirectoryToFirstFile: fullPathToPrimaryKcl.split('/').splice(-2).join('/'),
|
|
// This was added so that multiple file project samples do not load in
|
|
// the web app through the manifest.
|
|
multipleFiles: files.length > 1,
|
|
title,
|
|
description,
|
|
};
|
|
};
|
|
|
|
// Function to scan the directory and generate the manifest.json
|
|
const generateManifest = (dir) => {
|
|
const projectDirectories = fs.readdirSync(dir);
|
|
const manifest = [];
|
|
|
|
projectDirectories.forEach((file) => {
|
|
const projectPath = path.join(dir, file);
|
|
const stattedDir = fs.statSync(projectPath);
|
|
if (stattedDir.isDirectory()) {
|
|
const files = fs
|
|
.readdirSync(projectPath)
|
|
.filter((f) => f.endsWith(FILE_EXTENSION));
|
|
if (files.length === 0) {
|
|
return;
|
|
}
|
|
const metadata = getKclMetadata(projectPath, files);
|
|
if (metadata) {
|
|
manifest.push(metadata);
|
|
}
|
|
}
|
|
});
|
|
|
|
// Write the manifest.json
|
|
const outputPath = path.join(dir, MANIFEST_FILE);
|
|
fs.writeFileSync(outputPath, JSON.stringify(manifest, null, 2));
|
|
console.log(`Manifest of ${manifest.length} items written to ${outputPath}`);
|
|
};
|
|
|
|
// Run the script
|
|
console.log(`Generating ${MANIFEST_FILE}...`);
|
|
const projectDir = path.resolve(__dirname); // Set project root directory
|
|
generateManifest(projectDir);
|