forked from tensorflow/tfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublish-pypi.ts
66 lines (50 loc) · 1.96 KB
/
publish-pypi.ts
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
// publish-pypi.ts
import * as argparse from 'argparse';
import { checkoutReleaseBranch, question, $ } from './release-util';
import * as shell from 'shelljs';
import * as fs from 'fs';
import chalk from 'chalk';
const TMP_DIR = '/tmp/tfjs-pypi';
const parser = new argparse.ArgumentParser();
parser.addArgument('--git-protocol', {
action: 'storeTrue',
help: 'Use the git protocol rather than the http protocol when cloning repos.',
});
async function getNewlyCreatedBranches(): Promise<string[]> {
const branchesStr = $(`git branch -r --sort=-authordate --format='%(HEAD) %(refname:lstrip=-1)'`);
const branches = branchesStr.split('\n').map((line: string) => line.trim());
const pattern = /^tfjs_\d+\.\d+\.\d+.*$/;
const tfjsBranches = branches.filter((branch: string) => pattern.test(branch));
return tfjsBranches;
}
async function main() {
const args = parser.parseArgs();
try {
const branches = await getNewlyCreatedBranches();
console.log('Branches:', branches);
const latestBranch = branches[0];
console.log('Latest Branch:', latestBranch);
const answer = await question(chalk.cyan.bold(`Is this the right branch '${latestBranch}' you are looking for? (y/N): `));
if (answer.toLowerCase() === 'y') {
checkoutReleaseBranch(latestBranch, args.git_protocol, TMP_DIR);
const targetDir = `${TMP_DIR}/tfjs-converter/python`;
shell.cd(targetDir);
console.log(chalk.blue.bold('Current directory:', shell.pwd().toString()));
$('bazel clean');
$('bazel build python3_wheel');
// Remove dist folder if it exists
if (fs.existsSync('./dist')) {
fs.rmdirSync('./dist', { recursive: true });
}
$('./build-pip-package.sh --upload ./dist');
// Command executed successfully
console.log('Command executed successfully');
} else {
console.log('Aborted.');
}
} catch (error) {
console.error('Error:', error);
}
}
// Invoke the main function
main();