Spaces:
Runtime error
Runtime error
File size: 1,962 Bytes
db5855f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
// @ts-check
import { execSync } from 'child_process';
import { readFileSync } from 'fs';
import { dirname, join, relative } from 'path';
import { fileURLToPath } from 'url';
/**
* @returns {string[]}
*/
function getDocsIgnoredNotebooks() {
const CURRENT_DIR_PATH = dirname(fileURLToPath(import.meta.url));
const ignoreConvertFilePath = join(CURRENT_DIR_PATH, '..', '..', '..', '.ci', 'ignore_convert_full.txt');
return readFileSync(ignoreConvertFilePath, { encoding: 'utf8' }).split('\n');
}
/**
* @returns {string}
*/
function getLatestOvReleaseTag() {
const latestOvReleaseResponse = execSync(
`curl -L https://api.github.com/repos/openvinotoolkit/openvino/releases/latest`
).toString();
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
const responseJson = /** @type {{ tag_name: string }} */ (JSON.parse(latestOvReleaseResponse));
if (!responseJson?.tag_name) {
throw Error(`Unable to fetch latest OpenVINO release via GitHub API. Response: ${latestOvReleaseResponse}.`);
}
return responseJson.tag_name;
}
/**
* @param {string} tag
* @returns {string[]}
*/
function getAllDocsNotebooksForTag(tag) {
return execSync(
`curl -L https://github.com/openvinotoolkit/openvino/raw/${tag}/docs/notebooks/all_notebooks_paths.txt`
)
.toString()
.split('\n');
}
/**
* @returns {{ latestDocsNotebooks: string[]; latestOVReleaseTag: string}}
*/
function getLatestDocsNotebooksWithTag() {
const latestOVReleaseTag = getLatestOvReleaseTag();
const allDocsNotebooks = getAllDocsNotebooksForTag(latestOVReleaseTag);
const docsIgnoredNotebooks = getDocsIgnoredNotebooks();
const latestDocsNotebooks = allDocsNotebooks
.filter((v) => !docsIgnoredNotebooks.includes(v))
.map((v) => relative('notebooks', v));
return { latestDocsNotebooks, latestOVReleaseTag };
}
export const docsNotebooks = getLatestDocsNotebooksWithTag();
|