mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
(cherry picked from commit 6e52d0dbef
)
# Conflicts:
# packages/kbn-pm/dist/index.js
# packages/kbn-pm/src/commands/bootstrap.ts
Co-authored-by: Tiago Costa <tiago.costa@elastic.co>
This commit is contained in:
parent
8e9189b417
commit
55aa9f4311
2 changed files with 14 additions and 2 deletions
7
packages/kbn-pm/dist/index.js
vendored
7
packages/kbn-pm/dist/index.js
vendored
|
@ -8931,7 +8931,12 @@ const BootstrapCommand = {
|
|||
|
||||
if (forceInstall) {
|
||||
const forceInstallStartTime = Date.now();
|
||||
await Object(_utils_bazel__WEBPACK_IMPORTED_MODULE_9__["runBazel"])(['run', '@nodejs//:yarn'], runOffline);
|
||||
await Object(_utils_bazel__WEBPACK_IMPORTED_MODULE_9__["runBazel"])(['run', '@nodejs//:yarn'], runOffline, {
|
||||
env: {
|
||||
SASS_BINARY_SITE: 'https://us-central1-elastic-kibana-184716.cloudfunctions.net/kibana-ci-proxy-cache/node-sass',
|
||||
RE2_DOWNLOAD_MIRROR: 'https://us-central1-elastic-kibana-184716.cloudfunctions.net/kibana-ci-proxy-cache/node-re2'
|
||||
}
|
||||
});
|
||||
timings.push({
|
||||
id: 'force install dependencies',
|
||||
ms: Date.now() - forceInstallStartTime
|
||||
|
|
|
@ -71,7 +71,14 @@ export const BootstrapCommand: ICommand = {
|
|||
|
||||
if (forceInstall) {
|
||||
const forceInstallStartTime = Date.now();
|
||||
await runBazel(['run', '@nodejs//:yarn'], runOffline);
|
||||
await runBazel(['run', '@nodejs//:yarn'], runOffline, {
|
||||
env: {
|
||||
SASS_BINARY_SITE:
|
||||
'https://us-central1-elastic-kibana-184716.cloudfunctions.net/kibana-ci-proxy-cache/node-sass',
|
||||
RE2_DOWNLOAD_MIRROR:
|
||||
'https://us-central1-elastic-kibana-184716.cloudfunctions.net/kibana-ci-proxy-cache/node-re2',
|
||||
},
|
||||
});
|
||||
timings.push({
|
||||
id: 'force install dependencies',
|
||||
ms: Date.now() - forceInstallStartTime,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue