kibana/x-pack/tasks/helpers/git_info.ts
Jeramy Soucy 0493e15a95
[7.17] Update simple-git 1.116.0 -> 3.10.0 (#137232) (#137598)
* Update simple-git 1.116.0 -> 3.10.0 (#137232)

* Updates simple-git to 3.10.0

* Replaces deprecated simple-git imports. Adds needed null check for git status.

* Updated simple-git package dep with caret.

* Fixes call to deprecated simple-git function prototype.
2022-08-02 09:08:09 -04:00

37 lines
1 KiB
TypeScript

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import fs from 'fs';
import path from 'path';
// @ts-ignore barely used, untyped module
import simpleGit from 'simple-git';
const gitDir = path.resolve(__dirname, '..', '..');
export async function gitInfo() {
if (!fs.existsSync(path.join(gitDir, '.git'))) {
// This info is only used for debugging purposes in the log
// So if .git is not available for some reason, it's fine to output this
return {
number: 1,
sha: process.env.GIT_COMMIT || process.env.BUILDKITE_COMMIT || 'none',
};
}
const log = await simpleGit(gitDir).log();
return new Promise<{ number: number; sha: string }>((resolve, reject) => {
if (!log.latest) {
reject();
} else {
resolve({
number: log.total,
sha: log.latest.hash,
});
}
});
}