You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.8 KiB
62 lines
1.8 KiB
// Thanks to material-ui ❤️
|
|
// Create chunks for Argos: https://github.com/mui/material-ui/pull/23518
|
|
// https://github.com/mui/material-ui/blob/af81aae3b292ed180e7652a665fad1be2b38a7b3/scripts/pushArgos.js
|
|
const util = require('util');
|
|
const glob = require('fast-glob');
|
|
const lodashChunk = require('lodash/chunk');
|
|
const childProcess = require('child_process');
|
|
|
|
// eslint-disable-next-line import/no-unresolved
|
|
const argos = require('@argos-ci/core');
|
|
|
|
const execFileNode = util.promisify(childProcess.execFile);
|
|
|
|
function execFile(command, args) {
|
|
return execFileNode(command, args, {
|
|
cwd: process.cwd(),
|
|
env: process.env,
|
|
encoding: 'utf-8',
|
|
});
|
|
}
|
|
|
|
const screenshotsBase = 'imageSnapshots';
|
|
const screenshotsChunks = `imageSnapshots-chunks`;
|
|
const BATCH_SIZE = 200;
|
|
|
|
async function cpToTemp(screenshot, target) {
|
|
await execFile('mkdir', ['-p', target]);
|
|
await execFile('cp', [screenshot, target]);
|
|
}
|
|
|
|
async function run() {
|
|
const screenshots = await glob(`${screenshotsBase}/**/*`);
|
|
const chunks = lodashChunk(screenshots, BATCH_SIZE);
|
|
|
|
await Promise.all(
|
|
chunks.map((chunk, chunkIndex) =>
|
|
Promise.all(
|
|
chunk.map(screenshot => cpToTemp(screenshot, `${screenshotsChunks}/${chunkIndex}`)),
|
|
),
|
|
),
|
|
);
|
|
|
|
for (let i = 0; i < chunks.length; i += 1) {
|
|
// eslint-disable-next-line no-await-in-loop
|
|
const result = await argos.upload({
|
|
root: `${screenshotsChunks}/${i}`,
|
|
token: process.env.ARGOS_TOKEN,
|
|
parallel: {
|
|
total: chunks.length,
|
|
nonce: process.env.ARGOS_PARALLEL_NONCE || process.env.CIRCLE_BUILD_NUM,
|
|
},
|
|
});
|
|
// eslint-disable-next-line no-console -- pipe stdout
|
|
console.log(result);
|
|
}
|
|
}
|
|
|
|
run().catch(error => {
|
|
// eslint-disable-next-line no-console
|
|
console.error(error);
|
|
process.exit(1);
|
|
});
|
|
|