mirror of
https://github.com/video-dev/hls.js.git
synced 2026-05-17 13:30:38 +00:00
79 lines
2.3 KiB
JavaScript
Executable File
79 lines
2.3 KiB
JavaScript
Executable File
'use strict';
|
|
|
|
const fs = require('fs');
|
|
const versionParser = require('./version-parser.js');
|
|
const packageJson = require('../package.json');
|
|
|
|
const TRAVIS_MODE = process.env.TRAVIS_MODE;
|
|
let newVersion = '';
|
|
|
|
try {
|
|
if (TRAVIS_MODE === 'release') {
|
|
// write the version field in the package json to the version in the git tag
|
|
const tag = process.env.TRAVIS_TAG;
|
|
if (!versionParser.isValidVersion(tag)) {
|
|
throw new Error('Unsuported tag for release: ' + tag);
|
|
}
|
|
// remove v
|
|
newVersion = tag.substring(1);
|
|
} else if (TRAVIS_MODE === 'releaseCanary' || TRAVIS_MODE === 'netlifyPr' || TRAVIS_MODE === 'netlifyBranch') {
|
|
// bump patch in version from latest git tag
|
|
let currentVersion = getLatestVersionTag();
|
|
// remove v
|
|
currentVersion = currentVersion.substring(1);
|
|
|
|
let matched = false;
|
|
newVersion = currentVersion.replace(/^(\d+)\.(\d+)\.(\d+).*$/, function(_, major, minor, patch) {
|
|
matched = true;
|
|
return major + '.' + minor + '.' + (parseInt(patch, 10) + 1);
|
|
});
|
|
if (!matched) {
|
|
throw new Error('Error calculating version.');
|
|
}
|
|
if (TRAVIS_MODE === 'netlifyPr') {
|
|
newVersion += `-pr.${getCommitHash().substr(0, 8)}`;
|
|
} else if (TRAVIS_MODE === 'netlifyBranch') {
|
|
newVersion += `-branch.${process.env.BRANCH/* set by netlify */.replace(/[^a-zA-Z0-9]/g, '-')}.${getCommitHash().substr(0, 8)}`;
|
|
} else {
|
|
newVersion += `-canary.${getCommitNum()}`;
|
|
}
|
|
} else {
|
|
throw new Error('Unsupported travis mode: ' + TRAVIS_MODE);
|
|
}
|
|
|
|
packageJson.version = newVersion;
|
|
fs.writeFileSync('./package.json', JSON.stringify(packageJson));
|
|
console.log('Set version: ' + newVersion);
|
|
} catch(e) {
|
|
console.error(e);
|
|
process.exit(1);
|
|
}
|
|
process.exit(0);
|
|
|
|
function getCommitNum() {
|
|
return parseInt(exec('git rev-list --count HEAD'), 10);
|
|
}
|
|
|
|
function getCommitHash() {
|
|
return exec('git rev-parse HEAD');
|
|
}
|
|
|
|
function getLatestVersionTag() {
|
|
let commitish = '';
|
|
while(true) {
|
|
const tag = exec('git describe --abbrev=0 --match="v*" ' + commitish);
|
|
if (!tag) {
|
|
throw new Error('Could not find tag.');
|
|
}
|
|
if (versionParser.isValidStableVersion(tag)) {
|
|
return tag;
|
|
}
|
|
// next time search older tags than this one
|
|
commitish = tag + '~1';
|
|
}
|
|
}
|
|
|
|
function exec(cmd) {
|
|
return require('child_process').execSync(cmd).toString().trim();
|
|
}
|