forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(NA): bazel machinery installation on kbn bootstrap (elastic#89469…
…) (elastic#89521) * chore(NA): bazel machinery installation on kbn bootstrap * refact(NA): simplify install logic * chore(NA): update kbn pm with last changes
- Loading branch information
Showing
10 changed files
with
1,056 additions
and
891 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.7.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
4.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
workspace( | ||
name = "kibana", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* and the Server Side Public License, v 1; you may not use this file except in | ||
* compliance with, at your election, the Elastic License or the Server Side | ||
* Public License, v 1. | ||
*/ | ||
|
||
export * from './install_tools'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* and the Server Side Public License, v 1; you may not use this file except in | ||
* compliance with, at your election, the Elastic License or the Server Side | ||
* Public License, v 1. | ||
*/ | ||
|
||
import { resolve } from 'path'; | ||
import { spawn } from '../child_process'; | ||
import { readFile } from '../fs'; | ||
import { log } from '../log'; | ||
|
||
async function readBazelToolsVersionFile(repoRootPath: string, versionFilename: string) { | ||
const version = (await readFile(resolve(repoRootPath, versionFilename))) | ||
.toString() | ||
.split('\n')[0]; | ||
|
||
if (!version) { | ||
throw new Error( | ||
`[bazel_tools] Failed on reading bazel tools versions\n ${versionFilename} file do not contain any version set` | ||
); | ||
} | ||
|
||
return version; | ||
} | ||
|
||
export async function installBazelTools(repoRootPath: string) { | ||
log.debug(`[bazel_tools] reading bazel tools versions from version files`); | ||
const bazeliskVersion = await readBazelToolsVersionFile(repoRootPath, '.bazeliskversion'); | ||
const bazelVersion = await readBazelToolsVersionFile(repoRootPath, '.bazelversion'); | ||
|
||
// Check what globals are installed | ||
log.debug(`[bazel_tools] verify if bazelisk is installed`); | ||
const { stdout } = await spawn('yarn', ['global', 'list'], { stdio: 'pipe' }); | ||
|
||
// Install bazelisk if not installed | ||
if (!stdout.includes(`@bazel/bazelisk@${bazeliskVersion}`)) { | ||
log.info(`[bazel_tools] installing Bazel tools`); | ||
|
||
log.debug( | ||
`[bazel_tools] bazelisk is not installed. Installing @bazel/bazelisk@${bazeliskVersion} and bazel@${bazelVersion}` | ||
); | ||
await spawn('yarn', ['global', 'add', `@bazel/bazelisk@${bazeliskVersion}`], { | ||
env: { | ||
USE_BAZEL_VERSION: bazelVersion, | ||
}, | ||
stdio: 'pipe', | ||
}); | ||
} | ||
|
||
log.success(`[bazel_tools] all bazel tools are correctly installed`); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters