-
Notifications
You must be signed in to change notification settings - Fork 8.5k
chore(NA): bazel machinery installation on kbn bootstrap #89469
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
3932aac
chore(NA): bazel machinery installation on kbn bootstrap
mistic 28cb67e
Merge remote-tracking branch 'upstream/master' into install-bazel-mac…
mistic e705f84
refact(NA): simplify install logic
mistic e2116db
chore(NA): update kbn pm with last changes
mistic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.