-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcloneExamples.js
110 lines (94 loc) · 2.88 KB
/
cloneExamples.js
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
const fs = require('fs');
const { spawn } = require('child_process');
const { join } = require('path');
const chalk = require('chalk');
const configPath = join(process.cwd(), 'examples.config.js');
let config;
const errors = [];
async function cloneAndCheckout(repo) {
const cloneDir = `${config.outDir}/${repo.repo
.split('/')[1]
.replace('.git', '')}`;
// Clone the repository into the outDir directory
const clone = spawn('git', [
'clone',
'--single-branch',
'--depth',
'1',
'--branch',
repo.branch,
repo.repo,
cloneDir,
]);
clone.stdout.on('data', (data) => {
console.log(data);
});
// Log the output of the clone operation (stderr, not stdout)
clone.stderr.on('data', (data) => {
console.log(data.toString('utf8'));
});
return new Promise((resolve, reject) => {
clone.on('close', (code) => {
if (code === 0) {
// Remove .git directory from the cloned repository
fs.rmdirSync(join(cloneDir, '.git'), { recursive: true });
console.log(chalk.green(`Cloned repository: ${repo.repo}`));
resolve();
} else {
reject(`Failed to clone repository: ${repo.repo}`);
}
});
});
}
async function cloneBatch(repos) {
// Run the clone and checkout operations for each repository in the batch
try {
await Promise.all(repos.map(cloneAndCheckout));
} catch (err) {
errors.push(err);
}
}
async function cloneRepos() {
const batchSize = 5;
// Check if the examples.config file exists
if (!fs.existsSync(configPath)) {
// Run the generate-config NPM script
const generateConfig = spawn('npm', ['run', 'generate-config']);
generateConfig.stdout.on('data', (data) => {
console.log(`stdout: ${data}`);
});
generateConfig.stderr.on('data', (data) => {
console.error(`stderr: ${data}`);
});
// Wait for the generateConfig process to close
await new Promise((resolve, reject) => {
generateConfig.on('close', (code) => {
if (code !== 0) {
console.error('Failed to generate config file');
reject(new Error('Failed to generate config file'));
} else {
console.log('Config written successfully');
resolve();
}
});
});
}
// Load the config file after it has been generated
console.log('Loading config file: ', configPath);
config = require(configPath);
// Split the list of repositories into batches of size `batchSize`
const batches = [];
while (config.repos.length > 0) {
batches.push(config.repos.splice(0, batchSize));
}
// Clone each batch of repositories
for (const batch of batches) {
await cloneBatch(batch);
}
// Log any errors that occurred during the cloning process
if (errors.length > 0) {
console.log(chalk.red('Errors occurred during cloning:'));
errors.forEach((err) => console.log(chalk.red(err)));
}
}
cloneRepos();