mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Restores task for downloading Chromium builds (#71749)
This was removed in https://github.com/elastic/kibana/pull/69165 without realizing it was used by the packer cache. I renamed it to be more inline with what it actually does. Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>
This commit is contained in:
parent
8bcecc0fb0
commit
f0b4986099
3 changed files with 29 additions and 1 deletions
|
@ -18,7 +18,7 @@ node scripts/es snapshot --download-only;
|
|||
node scripts/es snapshot --license=oss --download-only;
|
||||
|
||||
# download reporting browsers
|
||||
(cd "x-pack" && yarn gulp prepare);
|
||||
(cd "x-pack" && yarn gulp downloadChromium);
|
||||
|
||||
# cache the chromedriver archive
|
||||
chromedriverDistVersion="$(node -e "console.log(require('chromedriver').version)")"
|
||||
|
|
|
@ -9,11 +9,13 @@ require('../src/setup_node_env');
|
|||
const { buildTask } = require('./tasks/build');
|
||||
const { devTask } = require('./tasks/dev');
|
||||
const { testTask, testKarmaTask, testKarmaDebugTask } = require('./tasks/test');
|
||||
const { downloadChromium } = require('./tasks/download_chromium');
|
||||
|
||||
// export the tasks that are runnable from the CLI
|
||||
module.exports = {
|
||||
build: buildTask,
|
||||
dev: devTask,
|
||||
downloadChromium,
|
||||
test: testTask,
|
||||
'test:karma': testKarmaTask,
|
||||
'test:karma:debug': testKarmaDebugTask,
|
||||
|
|
26
x-pack/tasks/download_chromium.ts
Normal file
26
x-pack/tasks/download_chromium.ts
Normal file
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License;
|
||||
* you may not use this file except in compliance with the Elastic License.
|
||||
*/
|
||||
|
||||
import { LevelLogger } from '../plugins/reporting/server/lib';
|
||||
import { ensureBrowserDownloaded } from '../plugins/reporting/server/browsers/download';
|
||||
|
||||
export const downloadChromium = async () => {
|
||||
// eslint-disable-next-line no-console
|
||||
const consoleLogger = (tag: string) => (message: unknown) => console.log(tag, message);
|
||||
const innerLogger = {
|
||||
get: () => innerLogger,
|
||||
debug: consoleLogger('debug'),
|
||||
info: consoleLogger('info'),
|
||||
warn: consoleLogger('warn'),
|
||||
trace: consoleLogger('trace'),
|
||||
error: consoleLogger('error'),
|
||||
fatal: consoleLogger('fatal'),
|
||||
log: consoleLogger('log'),
|
||||
};
|
||||
|
||||
const levelLogger = new LevelLogger(innerLogger);
|
||||
await ensureBrowserDownloaded(levelLogger);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue